From c667d125938bbf6e89c89572646cd06f3e2bffd3 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Fri, 7 Apr 2017 16:51:41 +0200 Subject: [PATCH] Do not open a new tab for file downloads --- frontend/js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/js/app.js b/frontend/js/app.js index bf9b534..0875f14 100644 --- a/frontend/js/app.js +++ b/frontend/js/app.js @@ -138,7 +138,7 @@ function open(entry) { function download(entry) { if (entry.isDirectory) return; - window.open(encode('/api/files/' + sanitize(app.path + '/' + entry.filePath)) + '?access_token=' + localStorage.accessToken); + window.location.href = encode('/api/files/' + sanitize(app.path + '/' + entry.filePath)) + '?access_token=' + localStorage.accessToken; } function up() { -- 2.41.0