From ff0c9c2fc892b766b8faf7d2b78fb2844548938d Mon Sep 17 00:00:00 2001 From: stfrigerio Date: Sat, 22 Feb 2025 16:27:30 +0100 Subject: [PATCH] corrected notice message --- main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.ts b/main.ts index 16bd481..90b7a0a 100644 --- a/main.ts +++ b/main.ts @@ -79,7 +79,7 @@ export default class SqliteDBPlugin extends Plugin { private async openDatabase(forceReload = true) { const adapter = this.app.vault.adapter; if (!(adapter instanceof FileSystemAdapter)) { - new Notice("This plugin only works with a local vault (FileSystemAdapter)."); + new Notice("This plugin currently only works on desktop."); return; } const basePath = adapter.getBasePath();