mirror of
https://github.com/overte-org/overte.git
synced 2025-07-22 21:28:54 +02:00
Also fix MS18512
This commit is contained in:
parent
58f098577d
commit
0081f9aac0
1 changed files with 3 additions and 1 deletions
|
@ -339,11 +339,13 @@ function fillImageDataFromPrevious() {
|
||||||
var previousAnimatedSnapStoryID = Settings.getValue("previousAnimatedSnapStoryID");
|
var previousAnimatedSnapStoryID = Settings.getValue("previousAnimatedSnapStoryID");
|
||||||
var previousAnimatedSnapBlastingDisabled = Settings.getValue("previousAnimatedSnapBlastingDisabled");
|
var previousAnimatedSnapBlastingDisabled = Settings.getValue("previousAnimatedSnapBlastingDisabled");
|
||||||
var previousAnimatedSnapHifiSharingDisabled = Settings.getValue("previousAnimatedSnapHifiSharingDisabled");
|
var previousAnimatedSnapHifiSharingDisabled = Settings.getValue("previousAnimatedSnapHifiSharingDisabled");
|
||||||
|
|
||||||
snapshotOptions = {
|
snapshotOptions = {
|
||||||
containsGif: previousAnimatedSnapPath !== "",
|
containsGif: previousAnimatedSnapPath !== "",
|
||||||
processingGif: false,
|
processingGif: false,
|
||||||
shouldUpload: false,
|
shouldUpload: false,
|
||||||
canBlast: snapshotDomainID === Settings.getValue("previousSnapshotDomainID"),
|
canBlast: snapshotDomainID === Settings.getValue("previousSnapshotDomainID") &&
|
||||||
|
snapshotDomainID === location.domainID,
|
||||||
isLoggedIn: isLoggedIn
|
isLoggedIn: isLoggedIn
|
||||||
};
|
};
|
||||||
imageData = [];
|
imageData = [];
|
||||||
|
|
Loading…
Reference in a new issue