From a4d008eec9bcc678533e7a0e37eb0b4a10601c12 Mon Sep 17 00:00:00 2001 From: seefo Date: Fri, 16 Jun 2017 08:57:27 -0700 Subject: [PATCH] Fixed a bug where you could not print polaroids if you took a gif --- 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 4e3fb95140..b045e64c6a 100644 --- a/scripts/system/snapshot.js +++ b/scripts/system/snapshot.js @@ -144,7 +144,9 @@ function onMessage(message) { isDomainOpen(Settings.getValue("previousSnapshotDomainID"), function (canShare) { var isGif = fileExtensionMatches(message.data, "gif"); isLoggedIn = Account.isLoggedIn(); - isUploadingPrintableStill = canShare && Account.isLoggedIn() && !isGif; + if (!isGif) { + isUploadingPrintableStill = canShare && Account.isLoggedIn(); + } if (canShare) { if (isLoggedIn) { print('Sharing snapshot with audience "for_url":', message.data);