mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2025-12-30 18:11:29 +00:00
0.24.0.dev-rc3
This commit is contained in:
@@ -38,18 +38,18 @@ export abstract class AbstractObsidianModule extends AbstractModule {
|
||||
saveSettings = this.plugin.saveSettings.bind(this.plugin);
|
||||
|
||||
|
||||
$isMainReady() {
|
||||
return this.core.$isMainReady();
|
||||
_isMainReady() {
|
||||
return this.core._isMainReady();
|
||||
}
|
||||
$isMainSuspended() {
|
||||
return this.core.$isMainSuspended();
|
||||
_isMainSuspended() {
|
||||
return this.core._isMainSuspended();
|
||||
}
|
||||
$isDatabaseReady() {
|
||||
return this.core.$isDatabaseReady();
|
||||
_isDatabaseReady() {
|
||||
return this.core._isDatabaseReady();
|
||||
}
|
||||
|
||||
//should be overridden
|
||||
$isThisModuleEnabled() {
|
||||
_isThisModuleEnabled() {
|
||||
return true
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user