mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-07 08:18:41 +09:00
Prevent form sync error when there's nothing to sync.
This commit is contained in:
parent
b7cd3b1046
commit
890dc7d073
1 changed files with 3 additions and 0 deletions
|
|
@ -225,6 +225,9 @@ FormTracker.prototype = {
|
|||
|
||||
observe: function (subject, topic, data) {
|
||||
Tracker.prototype.observe.call(this, subject, topic, data);
|
||||
if (this.ignoreAll) {
|
||||
return;
|
||||
}
|
||||
|
||||
switch (topic) {
|
||||
case "satchel-storage-changed":
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue