Prevent form sync error when there's nothing to sync.

This commit is contained in:
wolfbeast 2018-10-30 08:34:47 +01:00 committed by Roy Tam
commit 890dc7d073

View file

@ -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":