1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-07-28 15:22:05 +03:00

Optimized naming

This commit is contained in:
Steffen Kolmer
2020-10-21 16:15:15 +02:00
parent 335774b6ff
commit fbe2d7e0f8

View File

@ -822,15 +822,15 @@ export default class RoomView extends React.Component<IProps, IState> {
private onEventDecrypted = (ev) => { private onEventDecrypted = (ev) => {
if (ev.isDecryptionFailure()) return; if (ev.isDecryptionFailure()) return;
this.handleConfetti(ev); this.handleEffects(ev);
}; };
private onEvent = (ev) => { private onEvent = (ev) => {
if (ev.isBeingDecrypted() || ev.isDecryptionFailure()) return; 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.room.getUnreadNotificationCount() === 0) return;
if (this.state.matrixClientIsReady) { if (this.state.matrixClientIsReady) {
effects.forEach(effect => { effects.forEach(effect => {