aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Vitkov <alexvitkov98@gmail.com>2021-02-12 20:06:29 +0200
committerAlex Vitkov <alexvitkov98@gmail.com>2021-02-12 20:06:29 +0200
commit85c18501f24d0d9946a216d0f4c2f1290eece683 (patch)
tree9793c108997734f9cbfdffe269e71817f9db95f0
parentca628a59b1d319cf6fc0da2b65e42b9e375e4f22 (diff)
downloadfileup-85c18501f24d0d9946a216d0f4c2f1290eece683.tar.gz
fixed a backend bug in the frontend
-rw-r--r--loggedin.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/loggedin.js b/loggedin.js
index 01c8226..076fcbb 100644
--- a/loggedin.js
+++ b/loggedin.js
@@ -106,8 +106,9 @@ function load_dir() {
files = [];
var json = JSON.parse(this.responseText);
+ console.log(json);
for (const f of json) {
- add_file_visuals(f.name, f.is_directory, f.mimetype);
+ add_file_visuals(f.name, f.is_directory && f.is_directory != "0", f.mimetype);
}
};
xhr.send(data);