Jitsi Meet IOS deferred deeplink

I have configured jitsi meet deferred deep linking with firebase dynamic link

- (BOOL)application:(UIApplication *)app
            openURL:(NSURL *)url
            options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options {
    NSLog(@"launch app");

    // This shows up during a reload in development, skip it.
    // https://github.com/firebase/firebase-ios-sdk/issues/233
    if ([[url absoluteString] containsString:@"google/link/?dismiss=1&is_weak_match=1"]) {
        return NO;
    }

    NSURL *openUrl = url;
    

    if ([FIRUtilities appContainsRealServiceInfoPlist]) {
        // Process Firebase Dynamic Links
        FIRDynamicLink *dynamicLink = [[FIRDynamicLinks dynamicLinks] dynamicLinkFromCustomSchemeURL:url];
        NSURL *firebaseUrl = [FIRUtilities extractURL:dynamicLink];
        NSLog(@"firebaseUrl");
        if (firebaseUrl != nil) {
            openUrl = firebaseUrl;
            NSLog(@"firebaseUrl2");
            NSLog(@"firebaseUrl2 = %@", firebaseUrl);
        }
    }
   NSLog(@"firebaseUrl3 = %@", openUrl);
    return [[JitsiMeet sharedInstance] application:app
                                           openURL:openUrl
                                           options:options];
}

when I launch the mobile app first-time Firebase URL is printed but dest not app correctly route
I have print openUrl it is print the correct value

How do all your URls look like? Mask a few chars if you don’t want to reveal it.

Thank you @saghul reply. i fixed the issue it was wrong custom schema