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
444c4d78f7
commit
4cdabc620b
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