Fixed Bug 62762 - Web: Client: added new condition for id if we are in the root room folder

This commit is contained in:
DmitrySychugov 2023-06-02 17:25:58 +05:00
parent e007aa9844
commit a260615f09

View File

@ -2137,6 +2137,8 @@ class FilesActionStore {
id = urlFilter.folder;
}
if (id === undefined) return;
setIsLoading(true);
fetchFiles(id, null, true, false).finally(() => setIsLoading(false));