sharedMsg: remove userAway

userAway is purely server side and we don't send it to the client
This commit is contained in:
Reto Brunner 2024-04-21 13:21:26 +02:00
parent 82e4150cc8
commit fc9805545b
2 changed files with 0 additions and 2 deletions

View file

@ -217,7 +217,6 @@ class Chan {
type: this.type,
state: this.state,
userAway: this.userAway,
special: this.special,
data: this.data,
closed: this.closed,

View file

@ -35,7 +35,6 @@ export type SharedChan = {
type: ChanType;
state: ChanState;
userAway?: boolean;
special?: SpecialChanType;
data?: any;
closed?: boolean;