We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cfdf68e + 2be9e53 commit 3399d75Copy full SHA for 3399d75
js/gui.js
@@ -9,6 +9,7 @@ const FC = require('./fc');
9
const interval = require('./intervals');
10
const { scaleRangeInt } = require('./helpers');
11
const i18n = require('./localization');
12
+const mspDeduplicationQueue = require("./msp/mspDeduplicationQueue");
13
14
var TABS = {}; // filled by individual tab js file
15
@@ -90,6 +91,7 @@ GUI_control.prototype.log = function (message) {
90
91
// default switch doesn't require callback to be set
92
GUI_control.prototype.tab_switch_cleanup = function (callback) {
93
MSP.callbacks_cleanup(); // we don't care about any old data that might or might not arrive
94
+ mspDeduplicationQueue.flush();
95
96
interval.killAll(['global_data_refresh', 'msp-load-update', 'ltm-connection-check']);
97
0 commit comments