You've already forked element-web
mirror of
https://github.com/element-hq/element-web.git
synced 2025-11-29 21:23:11 +03:00
Optimized naming
This commit is contained in:
@@ -822,15 +822,15 @@ export default class RoomView extends React.Component<IProps, IState> {
|
||||
|
||||
private onEventDecrypted = (ev) => {
|
||||
if (ev.isDecryptionFailure()) return;
|
||||
this.handleConfetti(ev);
|
||||
this.handleEffects(ev);
|
||||
};
|
||||
|
||||
private onEvent = (ev) => {
|
||||
if (ev.isBeingDecrypted() || ev.isDecryptionFailure()) return;
|
||||
this.handleConfetti(ev);
|
||||
this.handleEffects(ev);
|
||||
};
|
||||
|
||||
private handleConfetti = (ev) => {
|
||||
private handleEffects = (ev) => {
|
||||
if (this.state.room.getUnreadNotificationCount() === 0) return;
|
||||
if (this.state.matrixClientIsReady) {
|
||||
effects.forEach(effect => {
|
||||
|
||||
Reference in New Issue
Block a user