fix typo in main

This commit is contained in:
Txoldi 2025-11-29 20:32:05 +01:00
parent 974bf27f4d
commit 03b24b3c39

View file

@ -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);