Fixed invalid channel tree unique id assignment for the initial server entry (https://forum.teaspeak.de/index.php?threads/2986)
parent
444c4d78f7
commit
4cdabc620b
|
@ -14,7 +14,7 @@ export abstract class ChannelTreeEntry<Events extends ChannelTreeEntryEvents> {
|
|||
protected unread_: boolean = false;
|
||||
|
||||
protected constructor() {
|
||||
this.uniqueEntryId = treeEntryIdCounter++;
|
||||
this.uniqueEntryId = ++treeEntryIdCounter;
|
||||
}
|
||||
|
||||
/* called from the channel tree */
|
||||
|
|
Loading…
Reference in New Issue