Commit 781f6231 authored by 神楽坂玲奈's avatar 神楽坂玲奈

ygopro自动导入的路径

parent c31b704e
...@@ -164,9 +164,10 @@ export class AppsService { ...@@ -164,9 +164,10 @@ export class AppsService {
} }
if (!library) { if (!library) {
try { try {
library = path.join(volume + ':', "MyCardLibrary"); let _library = path.join(volume + ':', "MyCardLibrary");
await this.createDirectory(library); await this.createDirectory(_library);
this.settingsService.addLibrary(library, true); this.settingsService.addLibrary(_library, true);
library = _library
} catch (error) { } catch (error) {
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment