mirror of https://github.com/vector-im/riot-web
Apply patch to the right branch: update for new count format
parent
eb62456007
commit
a08d00c672
|
@ -1,4 +1,4 @@
|
||||||
{
|
{
|
||||||
"default_hs_url": "https://matrix.org",
|
"default_hs_url": "http://localhost:8008",
|
||||||
"default_is_url": "https://vector.im"
|
"default_is_url": "https://vector.im"
|
||||||
}
|
}
|
||||||
|
|
|
@ -255,7 +255,7 @@ var RoomSubList = React.createClass({
|
||||||
collapsed={ self.props.collapsed || false}
|
collapsed={ self.props.collapsed || false}
|
||||||
selected={ selected }
|
selected={ selected }
|
||||||
unread={ self.props.activityMap[room.roomId] === 1 }
|
unread={ self.props.activityMap[room.roomId] === 1 }
|
||||||
highlight={ (room.unread_notifications && room.unread_notifications['notification_count'] > 0) || self.props.label === 'Invites' }
|
highlight={ room.getUnreadNotificationCount('highlight') > 0 || self.props.label === 'Invites' }
|
||||||
isInvite={ self.props.label === 'Invites' }
|
isInvite={ self.props.label === 'Invites' }
|
||||||
incomingCall={ self.props.incomingCall && (self.props.incomingCall.roomId === room.roomId) ? self.props.incomingCall : null }
|
incomingCall={ self.props.incomingCall && (self.props.incomingCall.roomId === room.roomId) ? self.props.incomingCall : null }
|
||||||
/>
|
/>
|
||||||
|
|
Loading…
Reference in New Issue