From 14494d85f63f22a9d1b240225d2eccf58a7c23f4 Mon Sep 17 00:00:00 2001 From: lifegpc Date: Sat, 8 Jun 2024 21:50:08 +0800 Subject: [PATCH] Fix typo --- config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.ts b/config.ts index 8c8e143..67b6a54 100644 --- a/config.ts +++ b/config.ts @@ -232,7 +232,7 @@ export class Config { return this._return_bool("check_file_hash") ?? true; } get import_method() { - const n = this._return_number("input_method") ?? 1; + const n = this._return_number("import_method") ?? 1; if (n < 0 || n > 3) return ImportMethod.CopyThenDelete; return n as ImportMethod; }