diff --git a/src/modules/features/ModuleLog.ts b/src/modules/features/ModuleLog.ts index d04f9c3..467de2b 100644 --- a/src/modules/features/ModuleLog.ts +++ b/src/modules/features/ModuleLog.ts @@ -30,7 +30,7 @@ import { LOG_LEVEL_NOTICE, setGlobalLogFunction } from "octagonal-wheels/common/ import { LogPaneView, VIEW_TYPE_LOG } from "./Log/LogPaneView.ts"; import { serialized } from "octagonal-wheels/concurrency/lock"; import { $msg } from "src/lib/src/common/i18n.ts"; -import { P2PLogCollector } from "../../lib/src/replication/trystero/P2PReplicatorCore.ts"; +import { P2PLogCollector } from "@/lib/src/replication/trystero/P2PLogCollector.ts"; import type { LiveSyncCore } from "../../main.ts"; import { LiveSyncError } from "@lib/common/LSError.ts"; import { isValidPath } from "@/common/utils.ts"; diff --git a/src/modules/main/ModuleLiveSyncMain.ts b/src/modules/main/ModuleLiveSyncMain.ts index 0dec4ff..d392c3e 100644 --- a/src/modules/main/ModuleLiveSyncMain.ts +++ b/src/modules/main/ModuleLiveSyncMain.ts @@ -106,10 +106,10 @@ export class ModuleLiveSyncMain extends AbstractModule { this._log($msg("moduleLiveSyncMain.logReadChangelog"), LOG_LEVEL_NOTICE); } - //@ts-ignore - if (this.isMobile) { - this.settings.disableRequestURI = true; - } + // //@ts-ignore + // if (this.isMobile) { + // this.settings.disableRequestURI = true; + // } if (last_version && Number(last_version) < VER) { this.settings.liveSync = false; this.settings.syncOnSave = false; diff --git a/src/serviceFeatures/setupObsidian/setupManagerHandlers.unit.spec.ts b/src/serviceFeatures/setupObsidian/setupManagerHandlers.unit.spec.ts index 6611194..067d860 100644 --- a/src/serviceFeatures/setupObsidian/setupManagerHandlers.unit.spec.ts +++ b/src/serviceFeatures/setupObsidian/setupManagerHandlers.unit.spec.ts @@ -20,7 +20,7 @@ describe("setupObsidian/setupManagerHandlers", () => { it("openSetupURI should delegate to SetupManager.onUseSetupURI", async () => { const setupManager = { - onUseSetupURI: vi.fn(async () => true), + onUseSetupURI: vi.fn(async () => await Promise.resolve(true)), } as any; await openSetupURI(setupManager); @@ -37,7 +37,7 @@ describe("setupObsidian/setupManagerHandlers", () => { }, } as any; const setupManager = { - onP2PManualSetup: vi.fn(async () => true), + onP2PManualSetup: vi.fn(async () => await Promise.resolve(true)), } as any; await openP2PSettings(host, setupManager); @@ -65,8 +65,8 @@ describe("setupObsidian/setupManagerHandlers", () => { }, } as any; const setupManager = { - onUseSetupURI: vi.fn(async () => true), - onP2PManualSetup: vi.fn(async () => true), + onUseSetupURI: vi.fn(async () => await Promise.resolve(true)), + onP2PManualSetup: vi.fn(async () => await Promise.resolve(true)), } as any; useSetupManagerHandlersFeature(host, setupManager); diff --git a/src/serviceFeatures/setupObsidian/setupProtocol.unit.spec.ts b/src/serviceFeatures/setupObsidian/setupProtocol.unit.spec.ts index 03d56e5..7974882 100644 --- a/src/serviceFeatures/setupObsidian/setupProtocol.unit.spec.ts +++ b/src/serviceFeatures/setupObsidian/setupProtocol.unit.spec.ts @@ -37,8 +37,8 @@ describe("setupObsidian/setupProtocol", () => { } as any; const log = vi.fn(); const setupManager = { - onUseSetupURI: vi.fn(async () => true), - decodeQR: vi.fn(async () => true), + onUseSetupURI: vi.fn(async () => await Promise.resolve(true)), + decodeQR: vi.fn(async () => await Promise.resolve(true)), } as any; registerSetupProtocolHandler(host, log, setupManager); @@ -67,8 +67,8 @@ describe("setupObsidian/setupProtocol", () => { } as any; const log = vi.fn(); const setupManager = { - onUseSetupURI: vi.fn(async () => true), - decodeQR: vi.fn(async () => true), + onUseSetupURI: vi.fn(async () => await Promise.resolve(true)), + decodeQR: vi.fn(async () => await Promise.resolve(true)), } as any; registerSetupProtocolHandler(host, log, setupManager);