From b1765c6ae3f42a604c0d14c4e8ba907e067965b2 Mon Sep 17 00:00:00 2001 From: yflory Date: Mon, 11 Dec 2017 17:58:59 +0100 Subject: [PATCH] Fix pad creation screen with anonymous users --- www/common/sframe-common-outer.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/www/common/sframe-common-outer.js b/www/common/sframe-common-outer.js index 9b39ed9a8..4fcd0e298 100644 --- a/www/common/sframe-common-outer.js +++ b/www/common/sframe-common-outer.js @@ -644,7 +644,8 @@ define([ Utils.Feedback.reportAppUsage(); if (!realtime) { return; } - if (isNewFile && AppConfig.displayCreationScreen) { return; } + if (isNewFile && Utils.LocalStore.isLoggedIn() + && AppConfig.displayCreationScreen) { return; } startRealtime(); });