Skip to content

Commit

Permalink
fix bug where first tweet on opening obsidian has undefined appended
Browse files Browse the repository at this point in the history
  • Loading branch information
kbravh committed Dec 6, 2021
1 parent c8fd1ec commit 31fc517
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {TweetUrlModal} from 'src/TweetUrlModal'
export default class TTM extends Plugin {
settings: TTMSettings
currentTweet: Tweet
currentTweetMarkdown: string
currentTweetMarkdown = ''
bearerToken: string
tweetComplete: TweetCompleteModal

Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "obsidian-tweet-to-markdown",
"name": "Tweet to Markdown",
"version": "1.2.0",
"version": "1.2.1",
"minAppVersion": "0.12.16",
"description": "Save tweets as Markdown files, along with their images, polls, etc.",
"author": "kbravh",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "obsidian-tweet-to-markdown",
"version": "1.2.0",
"version": "1.2.1",
"description": "Save tweets as beautiful markdown files in Obsidian (https://obsidian.md)",
"main": "main.js",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion versions.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"1.2.0": "0.12.16"
"1.2.1": "0.12.16"
}

0 comments on commit 31fc517

Please sign in to comment.