Merge branch 'fix-home-room-selection' into 'dev'

Fix room selection on Home (#) screen

See merge request keanuapp/keanuapp-weblite!150
This commit is contained in:
N Pex 2023-03-16 16:07:42 +00:00
commit ee27149d3d

View file

@ -182,7 +182,7 @@ export default {
},
roomChange(roomId) {
if (roomId == null || roomId == undefined || roomId == this.$matrix.currentRoomId) {
if (roomId == null || roomId == undefined) {
// Ignore, this is caused by "new room" etc.
return;
}