From 0960db7344a786f4735fd60901a29f8c0a0184dc Mon Sep 17 00:00:00 2001 From: Hadi Nategh Date: Wed, 16 Sep 2020 16:15:26 +0200 Subject: [PATCH] Push online users into top of the list as soon as they're active --- api/js/framework/fw_desktop.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/js/framework/fw_desktop.js b/api/js/framework/fw_desktop.js index 148fb0c2d9..e62acd63bb 100644 --- a/api/js/framework/fw_desktop.js +++ b/api/js/framework/fw_desktop.js @@ -528,13 +528,13 @@ /** * This method only used for status app when it tries to broadcast data to users * avoiding throwing exceptions for users whom might have no status app access - * + * * @param {type} _data * @returns {undefined} */ execPushBroadcastAppStatus: function(_data) { - if (app.status) app.status.mergeContent(_data); + if (app.status) app.status.mergeContent(_data, true); } }); })(window);