You've already forked matrix-js-sdk
mirror of
https://github.com/matrix-org/matrix-js-sdk.git
synced 2025-11-23 17:02:25 +03:00
Revert "Count notifications in encrypted rooms client-side"
This commit is contained in:
@@ -157,7 +157,6 @@ export interface IDecryptOptions {
|
||||
|
||||
export class MatrixEvent extends EventEmitter {
|
||||
private pushActions: IActionsObject = null;
|
||||
private wirePushActions: IActionsObject = null;
|
||||
private _replacingEvent: MatrixEvent = null;
|
||||
private _localRedactionEvent: MatrixEvent = null;
|
||||
private _isCancelled = false;
|
||||
@@ -989,16 +988,7 @@ export class MatrixEvent extends EventEmitter {
|
||||
* @return {?Object} push actions
|
||||
*/
|
||||
public getPushActions(): IActionsObject | null {
|
||||
return this.pushActions || this.wirePushActions;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the push actions, if known, for this event
|
||||
*
|
||||
* @return {?Object} push actions
|
||||
*/
|
||||
public getWirePushActions(): IActionsObject | null {
|
||||
return this.wirePushActions;
|
||||
return this.pushActions;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -1007,11 +997,7 @@ export class MatrixEvent extends EventEmitter {
|
||||
* @param {Object} pushActions push actions
|
||||
*/
|
||||
public setPushActions(pushActions: IActionsObject): void {
|
||||
if (this._decryptionPromise) {
|
||||
this.wirePushActions = pushActions;
|
||||
} else {
|
||||
this.pushActions = pushActions;
|
||||
}
|
||||
this.pushActions = pushActions;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user