Skip to content

Commit 8170f61

Browse files
committed
Fix: notebookNotExist error string
1 parent bca4482 commit 8170f61

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## not released
44

5+
- Fix: Placeholder for the error message `notebookNotExist` was output instead of the translation string
6+
57
## v1.2.1 (2024-11-26)
68

79
- Fix: Don't add empty tag when tag ends with `,` or contains several `,` directly behind each other #37

src/hotfolder.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ class Hotfolder {
240240
this.log.error("Notebook: " + importNotebook + " dose not exist");
241241
await this.showMsg(
242242
i18n.__(
243-
"error.notebookNotExist",
243+
"msg.error.notebookNotExist",
244244
importNotebook.trim(),
245245
hotfolderNr == 0 ? "" : hotfolderNr + 1
246246
)

0 commit comments

Comments
 (0)