From 81780b006ecc2593c8df08af923afeb9fe857836 Mon Sep 17 00:00:00 2001 From: David Langley Date: Fri, 5 Nov 2021 11:08:51 +0000 Subject: [PATCH] Set correct default for clientPermalinkBaseUrl --- Config/BuildSettings.swift | 2 +- changelog.d/5098.bugfix | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 changelog.d/5098.bugfix diff --git a/Config/BuildSettings.swift b/Config/BuildSettings.swift index bd6b63d83..6c15d412c 100644 --- a/Config/BuildSettings.swift +++ b/Config/BuildSettings.swift @@ -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 { diff --git a/changelog.d/5098.bugfix b/changelog.d/5098.bugfix new file mode 100644 index 000000000..77a90543a --- /dev/null +++ b/changelog.d/5098.bugfix @@ -0,0 +1 @@ +Invalid default value set for clientPermalinkBaseUrl.