Advertise support for matrix as a URL scheme. (#4236)

Internally everything is already in place to handle Matrix URIs as we support them within the app.
This commit is contained in:
Doug
2025-06-20 13:59:25 +01:00
committed by GitHub
parent a80e8ca9b8
commit 93d483ccfa
2 changed files with 3 additions and 1 deletions

View File

@@ -55,6 +55,7 @@
<key>CFBundleURLSchemes</key>
<array>
<string>$(BASE_BUNDLE_IDENTIFIER)</string>
<string>matrix</string>
</array>
</dict>
</array>

View File

@@ -62,7 +62,8 @@ targets:
CFBundleTypeRole: Editor,
CFBundleURLName: "Application",
CFBundleURLSchemes: [
$(BASE_BUNDLE_IDENTIFIER)
$(BASE_BUNDLE_IDENTIFIER), # The app's own scheme for custom routes
"matrix" # Matrix URI scheme for permalinks
]
}
]