Fixed invalid channel tree unique id assignment for the initial server entry (https://forum.teaspeak.de/index.php?threads/2986)
This commit is contained in:
parent
c8d037e33a
commit
f34efcc7f7
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ export abstract class ChannelTreeEntry<Events extends ChannelTreeEntryEvents> {
|
||||||
protected unread_: boolean = false;
|
protected unread_: boolean = false;
|
||||||
|
|
||||||
protected constructor() {
|
protected constructor() {
|
||||||
this.uniqueEntryId = treeEntryIdCounter++;
|
this.uniqueEntryId = ++treeEntryIdCounter;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* called from the channel tree */
|
/* called from the channel tree */
|
||||||
|
|
Loading…
Add table
Reference in a new issue