Removed the "global" replacement instead using an empty string

master
WolverinDEV 2020-12-22 13:37:49 +01:00
parent 810f50f336
commit 34c4bfc08a
2 changed files with 2 additions and 2 deletions

View File

@ -150,7 +150,7 @@ class IconManager extends AbstractIconManager {
}
resolveIcon(iconId: number, serverUniqueId: string, handlerIdHint: string): RemoteIcon {
serverUniqueId = serverUniqueId || "global";
serverUniqueId = serverUniqueId || "";
/* just to ensure */
iconId = iconId >>> 0;

View File

@ -54,7 +54,7 @@ class RemoteIconManager extends AbstractIconManager {
}
resolveIcon(iconId: number, serverUniqueId?: string, handlerId?: string): RemoteIcon {
serverUniqueId = serverUniqueId || "global";
serverUniqueId = serverUniqueId || "";
iconId = iconId >>> 0;