mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
activity notifications also change ASSETS to INVENTORY
This commit is contained in:
parent
b54b5082ee
commit
89656ea3f6
1 changed files with 2 additions and 2 deletions
|
@ -608,12 +608,12 @@ function notificationPollCallbackHistory(historyArray) {
|
|||
var message;
|
||||
if (!ui.notificationInitialCallbackMade[1]) {
|
||||
message = "You have " + notificationCount + " unread recent " +
|
||||
"transaction" + (notificationCount === 1 ? "" : "s") + ". Open ASSETS to see all activity.";
|
||||
"transaction" + (notificationCount === 1 ? "" : "s") + ". Open INVENTORY to see all activity.";
|
||||
ui.notificationDisplayBanner(message);
|
||||
} else {
|
||||
for (var i = 0; i < notificationCount; i++) {
|
||||
message = '"' + (historyArray[i].message) + '" ' +
|
||||
"Open ASSETS to see all activity.";
|
||||
"Open INVENTORY to see all activity.";
|
||||
ui.notificationDisplayBanner(message);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue