fix(ios): refine canvas and screen handling

This commit is contained in:
Peter Steinberger
2025-12-19 12:39:58 +01:00
parent 6795e78edf
commit 22f9322905
4 changed files with 11 additions and 16 deletions

View File

@@ -195,11 +195,11 @@ final class ScreenController {
?? bundle.url(forResource: name, withExtension: ext)
}
private static let canvasScaffoldURL: URL? = Self.bundledResourceURL(
private static let canvasScaffoldURL: URL? = ScreenController.bundledResourceURL(
name: "scaffold",
ext: "html",
subdirectory: "CanvasScaffold")
private static let a2uiIndexURL: URL? = Self.bundledResourceURL(
private static let a2uiIndexURL: URL? = ScreenController.bundledResourceURL(
name: "index",
ext: "html",
subdirectory: "CanvasA2UI")