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; }