mirror of
https://github.com/overte-org/overte.git
synced 2025-04-08 05:52:38 +02:00
Fixed a bug where you could not print polaroids if you took a gif
This commit is contained in:
parent
87a6b16d16
commit
a4d008eec9
1 changed files with 3 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue