Fix race causing channels to not clear mention on focus (#6587)

Этот коммит содержится в:
Joram Wilander
2017-06-06 07:56:07 -04:00
коммит произвёл GitHub
родитель 876c5dc9df
Коммит 382ba0b0d1

Просмотреть файл

@@ -119,12 +119,12 @@ export default class NeedsTeam extends React.Component {
// Set up tracking for whether the window is active
window.isActive = true;
$(window).on('focus', () => {
this.props.actions.viewChannel(ChannelStore.getCurrentId());
$(window).on('focus', async () => {
ChannelStore.resetCounts([ChannelStore.getCurrentId()]);
ChannelStore.emitChange();
window.isActive = true;
await this.props.actions.viewChannel(ChannelStore.getCurrentId());
if (new Date().getTime() - this.blurTime > UNREAD_CHECK_TIME_MILLISECONDS) {
this.props.actions.getMyChannelMembers(TeamStore.getCurrentId()).then(loadProfilesForSidebar);
}