Fix Bug 69014 - Accounts: Room List. When moving from a room back to the list of user rooms, the filter by user is reset.

This commit is contained in:
Tatiana Lopaeva 2024-07-05 10:44:36 +03:00
parent a8bf3593cc
commit 7d43e901db

View File

@ -330,7 +330,9 @@ class AccountsContextOptionsStore {
filter.subjectId = user.id;
filter.subjectFilter = FilterSubject.Member;
const filterParamsStr = filter.toUrlParams();
const { id } = this.userStore.user;
const filterParamsStr = filter.toUrlParams(id);
const url = getCategoryUrl(CategoryType.Shared);
const type = this.settingsStore.isDesktopClient ? "_self" : "_blank";