Client:FilesActionStore Fixed trash navigation

This commit is contained in:
Akmal Isomadinov 2024-08-27 14:50:32 +05:00
parent 852f506fba
commit eef453aa3a

View File

@ -2561,10 +2561,11 @@ class FilesActionStore {
return this.moveToRoomsPage(); return this.moveToRoomsPage();
} }
if ( if (categoryType === CategoryType.Trash) {
categoryType === CategoryType.Personal || return;
categoryType === CategoryType.Trash }
) {
if (categoryType === CategoryType.Personal) {
return this.backToParentFolder(); return this.backToParentFolder();
} }