Live video on the AT Protocol
79
fork

Configure Feed

Select the types of activity you want to include in your feed.

app: workaround for iOS deep linking

+10
+10
js/app/src/router.tsx
··· 168 168 linking.prefixes.push(`https://${domain}`); 169 169 } 170 170 171 + // https://github.com/streamplace/streamplace/issues/377 172 + const hasDevDomain = linking.prefixes.some((prefix) => 173 + prefix.includes("tv.aquareum.dev"), 174 + ); 175 + if (hasDevDomain) { 176 + linking.prefixes.push("tv.aquareum://"); 177 + } 178 + 179 + console.log("Linking prefixes", linking.prefixes); 180 + 171 181 const Drawer = createDrawerNavigator(); 172 182 173 183 const NavigationButton = ({ canGoBack }: { canGoBack?: boolean }) => {