Skip to content
This repository was archived by the owner on Jul 28, 2025. It is now read-only.

Commit b82b352

Browse files
committed
up api
1 parent 6299ac3 commit b82b352

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

manifest-beta.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"id": "dbfolder",
33
"name": "DB Folder",
4-
"version": "1.7.0",
5-
"minAppVersion": "0.14.8",
4+
"version": "1.8.0",
5+
"minAppVersion": "0.15.3",
66
"description": "Folder with the capability to store and retrieve data from a folder like database",
77
"author": "RafaelGB",
88
"authorUrl": "https://github.com/RafaelGB/obsidian-bd-folder",

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"id": "dbfolder",
33
"name": "DB Folder",
44
"version": "1.8.0",
5-
"minAppVersion": "0.14.8",
5+
"minAppVersion": "0.15.3",
66
"description": "Folder with the capability to store and retrieve data from a folder like database",
77
"author": "RafaelGB",
88
"authorUrl": "https://github.com/RafaelGB/obsidian-bd-folder",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"eslint": "8.15.0",
4141
"jest": "27.5.1",
4242
"jest-mock-extended": "2.0.6",
43-
"obsidian": "0.15.1",
43+
"obsidian": "0.15.3",
4444
"rollup": "2.75.5",
4545
"rollup-plugin-typescript2": "0.32.0",
4646
"rollup-plugin-terser": "7.0.2",

src/parsers/handlers/marshall/MarshallConfigHandler.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ export class MarshallConfigHandler extends AbstractYamlHandler {
1515
} else {
1616
Object.entries(DEFAULT_SETTINGS.local_settings).forEach(([key, value]) => {
1717
if (this.checkNullable(yaml.config[key as keyof LocalSettings])) {
18-
yaml.config = this.loadDefaultConfig(key, value, yaml.config);
18+
yaml.config = this.loadDefaultConfig(key as keyof LocalSettings, value, yaml.config);
1919
if (value !== "") {
2020
this.addError(`There was not "${key}" key in yaml. Default value "${value}" will be loaded`);
2121
}
2222
}
2323
// Check type of default value
2424
if (typeof value === "boolean") {
25-
yaml.config = this.parseBoolean(key, yaml.config);
25+
yaml.config = this.parseBoolean(key as keyof LocalSettings, yaml.config);
2626
}
2727
});
2828
}

0 commit comments

Comments
 (0)