Skip to content

Commit

Permalink
Add a missing scheme when getting the Element .well-known file.
Browse files Browse the repository at this point in the history
  • Loading branch information
pixlwave committed Jul 2, 2024
1 parent dac363c commit 2df1485
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ElementX/Sources/Services/Client/ClientProxy.swift
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,7 @@ class ClientProxy: ClientProxyProtocol {

func getElementWellKnown() async -> Result<ElementWellKnown?, ClientProxyError> {
guard let userIDServerName,
var url = URL(string: userIDServerName) else {
var url = URL(string: "https://\(userIDServerName)") else {
return .failure(.invalidUserIDServerName)
}

Expand Down

0 comments on commit 2df1485

Please sign in to comment.