1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-06-30 23:44:55 +02:00

Desktop: Fixes #5253: Fixed plugin state when it has been deleted outside the app

This commit is contained in:
Laurent Cozic
2021-08-05 12:48:39 +01:00
parent 5d176b5bc8
commit 3348b4f6f8
2 changed files with 32 additions and 7 deletions

View File

@ -87,6 +87,10 @@ export default class PluginService extends BaseService {
return this.plugins_;
}
public get pluginIds(): string[] {
return Object.keys(this.plugins_);
}
public get isSafeMode(): boolean {
return this.isSafeMode_;
}