Merge pull request #5099 from vector-im/langleyd/5098_incorrect_clientPermalinkBaseUrl_default

Set correct default for clientPermalinkBaseUrl
This commit is contained in:
David Langley
2021-11-05 11:38:08 +00:00
committed by GitHub
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -142,7 +142,7 @@ final class BuildSettings: NSObject {
// This baseURL is used to generate permalinks within the app (E.g. timeline message permalinks).
// Optional String that when set is used as permalink base, when nil matrix.to format is used.
// Example value would be "https://www.example.com", note there is no trailing '/'.
static let clientPermalinkBaseUrl: String? = "https://app.element.io"
static let clientPermalinkBaseUrl: String? = nil
// MARK: - VoIP
static var allowVoIPUsage: Bool {
+1
View File
@@ -0,0 +1 @@
Invalid default value set for clientPermalinkBaseUrl.