diff options
| author | Fuwn <[email protected]> | 2025-02-24 23:16:10 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-02-24 23:16:10 -0800 |
| commit | f82ba02a79a699de730333d6f5eb622aafadb06e (patch) | |
| tree | 23ef82de6ff7bbf9b72ea8e0db30a5a8d5006807 /Sora/Views/MainView.swift | |
| parent | feat: Development commit (diff) | |
| download | sora-testing-f82ba02a79a699de730333d6f5eb622aafadb06e.tar.xz sora-testing-f82ba02a79a699de730333d6f5eb622aafadb06e.zip | |
feat: Development commit
Diffstat (limited to 'Sora/Views/MainView.swift')
| -rw-r--r-- | Sora/Views/MainView.swift | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Sora/Views/MainView.swift b/Sora/Views/MainView.swift index db9960a..0cf2679 100644 --- a/Sora/Views/MainView.swift +++ b/Sora/Views/MainView.swift @@ -12,7 +12,7 @@ struct MainView: View { .onChange(of: settings.preferredBooru) { _, newState in updateManager(newState) } - .onAppear(perform: initialiseManager) + .onAppear(perform: initializeManager) } @ViewBuilder private var platformSpecificContent: some View { @@ -52,7 +52,7 @@ struct MainView: View { } } - private func initialiseManager() { + private func initializeManager() { manager = BooruManager(settings.preferredBooru) Task { |