mirror of
https://github.com/vector-im/element-web.git
synced 2026-05-05 12:16:53 +02:00
Optimized naming
This commit is contained in:
parent
335774b6ff
commit
fbe2d7e0f8
@ -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 => {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user