Remove unnecessary check

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
pull/21833/head
Šimon Brandner 2021-04-20 12:18:46 +02:00
parent a3d0ccf306
commit 08c0f0a67e
No known key found for this signature in database
GPG Key ID: 9760693FDD98A790
1 changed files with 1 additions and 3 deletions

View File

@ -513,9 +513,7 @@ export class SpaceStoreClass extends AsyncStoreWithClient<IState> {
// persist last viewed room from a space
// We don't want to save if the room is a
// space room since it can cause problems
if (room && !room.isSpaceRoom()) {
if (room) {
const activeSpaceId = this.activeSpace?.roomId || LAST_VIEWED_ROOMS_HOME;
window.localStorage.setItem(`${LAST_VIEWED_ROOMS}_${activeSpaceId}`, payload.room_id);
}