No need to respond APP_VERSION in FolderInformation and FolderInformationMultiply requests

This commit is contained in:
djmaze 2021-10-31 01:06:32 +02:00
parent e4149b655c
commit 06cb57bc93
3 changed files with 5 additions and 9 deletions

View file

@ -551,9 +551,9 @@ class AppUser extends AbstractApp {
const folders = FolderUserStore.getNextFolderNames(refreshFolders);
if (arrayLength(folders)) {
Remote.folderInformationMultiply((iError, oData) => {
if (!iError && arrayLength(oData.Result.List)) {
if (!iError && arrayLength(oData.Result)) {
const utc = Date.now();
oData.Result.List.forEach(item => {
oData.Result.forEach(item => {
const hash = getFolderHash(item.Folder),
folder = getFolderFromCacheList(item.Folder);