Fix broadcast deletion race condition

pull/1/head
yflory 2021-03-15 14:54:21 +01:00
parent a03e2546e5
commit 807642151a
1 changed files with 6 additions and 4 deletions

View File

@ -995,12 +995,14 @@ define([
return UI.warn(Messages.error);
}
// Clear the UI
reset();
onRefreshBroadcast.fire();
// Only print success if there is no callback
if (!_cb) { UI.log(Messages.saved); }
if (!_cb) {
UI.log(Messages.saved);
// Clear the UI
reset();
onRefreshBroadcast.fire();
}
});
};