Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Stop reloading file list when getting 401 error on root dir
When reaching the root dir, instead of reloading the file list we reload
the page completely. This trigger a redirection to the login page automatically
with the correct ?redirect_url= in thr url.

Signed-off-by: Carl Schwan <[email protected]>
  • Loading branch information
CarlSchwan authored and backportbot[bot] committed Dec 8, 2021
commit ad447223971d78bc6681e112a60d5568888cc605
4 changes: 4 additions & 0 deletions apps/files/js/filelist.js
Original file line number Diff line number Diff line change
Expand Up @@ -2232,6 +2232,10 @@
this.hideMask();

if (status === 401) {
if (this.getCurrentDirectory() === '/') {
// Give up, if we are not authorized to access user root folder, we are logged out
location.reload(); // this will redirect the user to the login page while saving the current url
}
return false;
}

Expand Down