Skip to content

Commit

Permalink
Fix annoying lineEnging related error
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjackphil committed Dec 27, 2020
1 parent 4da3ffc commit 9095101
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ export default class TextExpander extends Plugin {

const data = await this.loadData()
this.delay = data?.delay || 2000
this.lineEnding = data.lineEnding || '<--->'
this.lineEnding = data?.lineEnding || '<--->'
}

onunload() {
Expand Down
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"id": "mrj-text-expand",
"name": "Text {{expand}}",
"version": "0.6.2",
"version": "0.6.3",
"description": "Search and paste/transclude links to founded files.",
"isDesktopOnly": false,
"author": "MrJackphil",
"authorUrl": "https://mrjackphil.com"
}
}

0 comments on commit 9095101

Please sign in to comment.