From e4837b8cb1b7865c58eca9870e44e9000c2d17d8 Mon Sep 17 00:00:00 2001 From: Amardeep Date: Sat, 16 May 2026 23:38:44 +0530 Subject: [PATCH] Allow PoliticTalk rooms in mobile browser --- config/politictalk.parallelglobe.io-config.js | 5 +++++ local/custom-config.js | 6 ++++++ 2 files changed, 11 insertions(+) diff --git a/config/politictalk.parallelglobe.io-config.js b/config/politictalk.parallelglobe.io-config.js index b01f69f..777c2fc 100644 --- a/config/politictalk.parallelglobe.io-config.js +++ b/config/politictalk.parallelglobe.io-config.js @@ -1290,6 +1290,7 @@ var config = { // If true, any checks to handoff to another application will be prevented // and instead the app will continue to display in the current browser. // disableDeepLinking: false, + disableDeepLinking: true, // The deeplinking config. // deeplinking: { @@ -1334,6 +1335,10 @@ var config = { // fDroidUrl: 'https://f-droid.org/en/packages/org.jitsi.meet/', // } // }, + deeplinking: { + disabled: true, + hideLogo: false, + }, // // The terms, privacy and help centre URL's. // legalUrls: { diff --git a/local/custom-config.js b/local/custom-config.js index b587b89..7f621c0 100644 --- a/local/custom-config.js +++ b/local/custom-config.js @@ -23,6 +23,12 @@ config.disablePolls = false; config.disableInviteFunctions = true; config.doNotStoreRoom = true; +config.disableDeepLinking = true; +config.deeplinking = { + disabled: true, + hideLogo: false +}; + config.enableEncodedTransformSupport = true; config.enableNoisyMicDetection = true; config.disableRemoteMute = false;