From 382204a9a98bba7a1885ca22c2628ff81f5967b1 Mon Sep 17 00:00:00 2001 From: Dante Ruiz Date: Mon, 10 Apr 2017 22:33:07 +0100 Subject: [PATCH] open feed after logging in --- scripts/system/snapshot.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/system/snapshot.js b/scripts/system/snapshot.js index 6255842a63..76f72d97e1 100644 --- a/scripts/system/snapshot.js +++ b/scripts/system/snapshot.js @@ -255,7 +255,9 @@ function onConnected() { print('sharing', snapshotToShareAfterLogin.path); Window.shareSnapshot(snapshotToShareAfterLogin.path, snapshotToShareAfterLogin.href); shareAfterLogin = false; - showFeedWindow(); + if (shouldOpenFeedAfterShare()) { + showFeedWindow(); + } } }