From f5bd4bd752c5525dcfb0b179db9b467b8fe7a590 Mon Sep 17 00:00:00 2001 From: Harrison Healey Date: Mon, 2 Apr 2018 16:02:42 -0400 Subject: [PATCH] Fixed MATTERMOST-MOBILE-ANDROID-87 (#1566) --- app/reducers/views/channel.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/reducers/views/channel.js b/app/reducers/views/channel.js index a54c62ff4..e465c99cd 100644 --- a/app/reducers/views/channel.js +++ b/app/reducers/views/channel.js @@ -13,7 +13,7 @@ import {ViewTypes} from 'app/constants'; function displayName(state = '', action) { switch (action.type) { case ViewTypes.SET_CHANNEL_DISPLAY_NAME: - return action.displayName; + return action.displayName || ''; default: return state; }