mirror of
https://github.com/element-hq/element-x-ios.git
synced 2026-01-16 23:01:33 +00:00
* it works but only with the baseURL for now * works but strings are not referenced properly and we are using a dummy config.json which maybe is not required at all? * test with EmbeddedElementCall repo * updated the version * ignore our own package * updated version removed using EC through the well known URL * fix for remote URL overriding * updated version * fix for microphone and camera using local URL * better solution * Use version 0.9.0-release-test.3 * fix project * removed workaround for emebedded EC url generation * updated EC * pr suggestions * fix * removed unnecessary configuration flag --------- Co-authored-by: Hugh Nimmo-Smith <hughns@element.io>
17 lines
442 B
Swift
17 lines
442 B
Swift
//
|
|
// Copyright 2024 New Vector Ltd.
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
// Please see LICENSE files in the repository root for full details.
|
|
//
|
|
|
|
import Foundation
|
|
import MatrixRustSDK
|
|
|
|
struct ElementWellKnown {
|
|
let registrationHelperURL: URL?
|
|
|
|
init?(_ wellKnown: MatrixRustSDK.ElementWellKnown) {
|
|
registrationHelperURL = wellKnown.registrationHelperUrl.flatMap(URL.init)
|
|
}
|
|
}
|