Skip to content

Commit

Permalink
coding
Browse files Browse the repository at this point in the history
Signed-off-by: Marino Faggiana <[email protected]>
  • Loading branch information
marinofaggiana committed May 30, 2024
1 parent 01901b2 commit 55270f6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion iOSClient/Settings/Settings/NCSettingsModel.swift
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,9 @@ class NCSettingsModel: ObservableObject, ViewOnAppearHandling {
func getConfigFiles() {
let configLink = appDelegate.urlBase + NCBrandOptions.shared.mobileconfig
let configServer = NCConfigServer()
configServer.startService(url: URL(string: configLink)!)
if let url = URL(string: configLink) {
configServer.startService(url: url)
}
}
}

Expand Down

0 comments on commit 55270f6

Please sign in to comment.