From 9f597dac1f24489c5866c472b3fcb76b7bd13009 Mon Sep 17 00:00:00 2001 From: yflory Date: Mon, 23 Sep 2019 17:25:21 +0200 Subject: [PATCH] Fix drive displaying All Files after logging in --- www/common/drive-ui.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/www/common/drive-ui.js b/www/common/drive-ui.js index ef5f7e71b..242d90106 100644 --- a/www/common/drive-ui.js +++ b/www/common/drive-ui.js @@ -3209,6 +3209,11 @@ define([ } } + if (APP.loggedIn && path[0] === FILES_DATA) { + path = [ROOT]; + } + + appStatus.ready(false); currentPath = path; var s = $content.scrollTop() || 0;