diff --git a/server/models/chan.ts b/server/models/chan.ts index 83bbae6a..8034e520 100644 --- a/server/models/chan.ts +++ b/server/models/chan.ts @@ -217,7 +217,6 @@ class Chan { type: this.type, state: this.state, - userAway: this.userAway, special: this.special, data: this.data, closed: this.closed, diff --git a/shared/types/chan.ts b/shared/types/chan.ts index ddec0ffb..155901f8 100644 --- a/shared/types/chan.ts +++ b/shared/types/chan.ts @@ -35,7 +35,6 @@ export type SharedChan = { type: ChanType; state: ChanState; - userAway?: boolean; special?: SpecialChanType; data?: any; closed?: boolean;