diff --git a/src/components/views/rooms/RoomList.js b/src/components/views/rooms/RoomList.js index 27f88fb33b..2bd0f473bc 100644 --- a/src/components/views/rooms/RoomList.js +++ b/src/components/views/rooms/RoomList.js @@ -35,7 +35,7 @@ import RoomListStore from '../../../stores/RoomListStore'; import GroupStore from '../../../stores/GroupStore'; const HIDE_CONFERENCE_CHANS = true; -const STANDARD_TAGS_REGEX = /^(m\.(favourite|lowpriority)|im\.vector\.fake\.(invite|recent|direct|archived))$/; +const STANDARD_TAGS_REGEX = /^(m\.(favourite|lowpriority|server_notice)|im\.vector\.fake\.(invite|recent|direct|archived))$/; function labelForTagName(tagName) { if (tagName.startsWith('u.')) return tagName.slice(2); @@ -742,6 +742,18 @@ module.exports = React.createClass({ searchFilter={self.props.searchFilter} onShowMoreRooms={self.onShowMoreRooms} showEmpty={showEmpty} /> + + ); diff --git a/src/i18n/strings/en_EN.json b/src/i18n/strings/en_EN.json index 1605557a06..d44187b834 100644 --- a/src/i18n/strings/en_EN.json +++ b/src/i18n/strings/en_EN.json @@ -464,6 +464,7 @@ "People": "People", "Rooms": "Rooms", "Low priority": "Low priority", + "System Alerts": "System Alerts", "You have no historical rooms": "You have no historical rooms", "Historical": "Historical", "Unable to ascertain that the address this invite was sent to matches one associated with your account.": "Unable to ascertain that the address this invite was sent to matches one associated with your account.", diff --git a/src/stores/RoomListStore.js b/src/stores/RoomListStore.js index 716bbad3e3..5b38792678 100644 --- a/src/stores/RoomListStore.js +++ b/src/stores/RoomListStore.js @@ -45,6 +45,7 @@ class RoomListStore extends Store { // Initialise state this._state = { lists: { + "m.server_notice": [], "im.vector.fake.invite": [], "m.favourite": [], "im.vector.fake.recent": [], @@ -158,6 +159,7 @@ class RoomListStore extends Store { _generateRoomLists(optimisticRequest) { const lists = { + "m.server_notice": [], "im.vector.fake.invite": [], "m.favourite": [], "im.vector.fake.recent": [],