From 9209e44cd3096a9cbe6d4c6d9818c3e6c5fbbf44 Mon Sep 17 00:00:00 2001 From: ed Date: Sun, 1 Aug 2021 00:08:50 +0200 Subject: [PATCH] heh --- copyparty/web/util.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/copyparty/web/util.js b/copyparty/web/util.js index 57bef25a..2e8ec506 100644 --- a/copyparty/web/util.js +++ b/copyparty/web/util.js @@ -399,9 +399,9 @@ function uricom_dec(txt) { function uricom_adec(arr) { - ret = []; + var ret = []; for (var a = 0; a < arr.length; a++) - ret[a] = uricom_dec(arr[a])[0]; + ret.push(uricom_dec(arr[a])[0]); return ret; }