Skip to content

Commit

Permalink
Merge pull request #13 from studiowebux/12-right-clicked-on-the-spoti…
Browse files Browse the repository at this point in the history
…fy-connected-text

fix: removed event that was only for testing purposes
  • Loading branch information
studiowebux authored Apr 19, 2024
2 parents cc154d7 + 07067a3 commit 14ee7ec
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "spotify-link",
"name": "Spotify Link",
"version": "1.4.0",
"version": "1.4.1",
"minAppVersion": "0.15.0",
"description": "Include the song you're currently listening to in your note.",
"author": "Studio Webux",
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "spotify-link",
"version": "1.4.0",
"version": "1.4.1",
"description": "Include the song you're currently listening to in your Obsidian (https://obsidian.md) note",
"main": "main.js",
"scripts": {
Expand Down
3 changes: 0 additions & 3 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -186,8 +186,5 @@ export default class SpotifyLinkPlugin extends Plugin {
this.statusBar.setText(
`Spotify ${!this.spotifyConnected ? "not" : ""} Connected`
);
this.statusBar.onClickEvent((ev) => {
window.open(this.spotifyUrl);
});
}
}

0 comments on commit 14ee7ec

Please sign in to comment.