Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: ssconf:// deeplinking on ios #1524

Merged
merged 16 commits into from
Jan 12, 2023
2 changes: 1 addition & 1 deletion src/www/app/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,7 @@ export class App {

private registerUrlInterceptionListener(urlInterceptor: UrlInterceptor) {
urlInterceptor.registerListener(url => {
if (!url || !unwrapInvite(url).startsWith('ss://')) {
if (!url || !(unwrapInvite(url).startsWith('ss://') || unwrapInvite(url).startsWith('ssconf://'))) {
daniellacosse marked this conversation as resolved.
Show resolved Hide resolved
daniellacosse marked this conversation as resolved.
Show resolved Hide resolved
// This check is necessary to ignore empty and malformed install-referrer URLs in Android
// while allowing ss:// and invite URLs.
// TODO: Stop receiving install referrer intents so we can remove this.
Expand Down