mirror of
https://github.com/txoldi/obsidian-lastfm-plugin.git
synced 2026-07-22 06:40:51 +00:00
fix typo in main
This commit is contained in:
parent
974bf27f4d
commit
03b24b3c39
1 changed files with 1 additions and 1 deletions
2
main.ts
2
main.ts
|
|
@ -17,7 +17,7 @@ export default class LastFmPlugin extends Plugin {
|
|||
(_evt: MouseEvent) => {
|
||||
if (!this.settings.apiKey || !this.settings.username) {
|
||||
// Defenive coding against missing input settings (API key and user name)
|
||||
new Notice("lease configure last.fm API key and username in the settings.");
|
||||
new Notice("Please configure last.fm API key and username in the settings.");
|
||||
return;
|
||||
}
|
||||
const api = new LastFmApi(this.settings.apiKey, this.settings.username);
|
||||
|
|
|
|||
Loading…
Reference in a new issue