From 699a635746d45eded3d653b7635567e4d9c7c97e Mon Sep 17 00:00:00 2001 From: ansuz Date: Mon, 30 Apr 2018 11:47:53 +0200 Subject: [PATCH] add trailing slash when redirecting to drive --- www/profile/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/profile/main.js b/www/profile/main.js index c4b3847a4..ccbfafe3a 100644 --- a/www/profile/main.js +++ b/www/profile/main.js @@ -55,7 +55,7 @@ define([ // 3rd case: profile creation (create a new random hash, store it later if needed) if (!Utils.LocalStore.isLoggedIn()) { // Unregistered users can't create a profile - window.location.href = '/drive'; + window.location.href = '/drive/'; return void cb(); } var hash = Hash.createRandomHash();