Fix name of base folder

This commit is contained in:
Ximi1970
2020-05-21 23:49:54 +02:00
parent 3f878c1e9c
commit c7c6a2551d
2 changed files with 2 additions and 1 deletions

View File

@@ -212,6 +212,7 @@ function checkFolderFilters(filters) {
if (filter.folder.version === undefined) {
folder.version = SysTrayX.version;
folder.path = found[0].path;
folder.name = found[0].path.split("/").pop();
filtersChanged = true;
}

View File

@@ -197,7 +197,7 @@ SysTrayX.Accounts = {
accountName: element.accountName,
accountId: element.accountId,
path: element.path,
name: element.name,
name: element.path.split("/").pop(),
version: SysTrayX.version,
})
);