Closed
Bug 1361906
Opened 8 years ago
Closed 8 years ago
NS_ERROR_NOT_INITIALIZED in Sync animation timer
Categories
(Firefox :: Sync, defect)
Firefox
Sync
Tracking
()
RESOLVED
DUPLICATE
of bug 1353571
People
(Reporter: rnewman, Unassigned)
Details
onActivityStop() {
if (!gBrowser)
return;
this.log.debug("onActivityStop");
let now = Date.now();
let syncDuration = now - this._syncStartTime;
if (syncDuration < MIN_STATUS_ANIMATION_DURATION) {
let animationTime = MIN_STATUS_ANIMATION_DURATION - syncDuration;
clearTimeout(this._syncAnimationTimer);
this._syncAnimationTimer = setTimeout(() => this._updateSyncStatus(), animationTime); <<<<<<<<<<<<<
} else {
this._updateSyncStatus();
}
},
This is being called when handling the weave:...:finished notification sent at the end of a sync.
Nightly, with some add-ons installed.
Comment 1•8 years ago
|
||
Let's see if bug 1353571 landing soon fixes that, do you have a stacktrace?
Reporter | ||
Comment 2•8 years ago
|
||
Not a useful one, really: it's called almost directly from the weave notification at the end of _lockedSync. *shrug* event handlers *shrug*
Comment 3•8 years ago
|
||
This appears to have been fixed by bug 1353571!
Status: NEW → RESOLVED
Closed: 8 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•