Remove old notification functionality

master
Torjus 2018-07-31 10:39:01 +02:00
parent 8bf2aed6de
commit f6ca837646
1 changed files with 0 additions and 10 deletions

View File

@ -1149,16 +1149,6 @@ export default class RoomClient
this._dispatch( this._dispatch(
stateActions.addResponseMessage({ ...chatMessage, peerName })); stateActions.addResponseMessage({ ...chatMessage, peerName }));
const toolAreaState = this._getState().toolarea;
// Notify about the new file, unless the chat is open.
if (chatMessage.file && !(toolAreaState.toolAreaOpen && toolAreaState.currentToolTab === 'chat'))
{
this._dispatch(
requestActions.notify({ text: `${chatMessage.name} shared a file` })
);
}
break; break;
} }