mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-10 09:02:26 +02:00
Fix MS20161: Fix INVENTORY notification dot state
This commit is contained in:
parent
f7bf51d62c
commit
ab6aeae91a
1 changed files with 1 additions and 1 deletions
|
@ -578,7 +578,7 @@ function notificationDataProcessPageHistory(data) {
|
|||
|
||||
var shouldShowDotUpdates = false;
|
||||
function notificationPollCallbackUpdates(updatesArray) {
|
||||
shouldShowDotUpdates = shouldShowDotUpdates || updatesArray.length > 0;
|
||||
shouldShowDotUpdates = updatesArray.length > 0;
|
||||
ui.messagesWaiting(shouldShowDotUpdates || shouldShowDotHistory);
|
||||
|
||||
if (updatesArray.length > 0) {
|
||||
|
|
Loading…
Reference in a new issue