Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Fix Android in-app browser closing when switching apps (#3546)

authored by

Nick Manos and committed by
GitHub
cb3f2468 3b9c5cee

+5 -3
+5 -3
src/state/preferences/in-app-browser.tsx
··· 1 1 import React from 'react' 2 - import * as persisted from '#/state/persisted' 3 2 import {Linking} from 'react-native' 4 3 import * as WebBrowser from 'expo-web-browser' 4 + 5 5 import {isNative} from '#/platform/detection' 6 - import {useModalControls} from '../modals' 6 + import * as persisted from '#/state/persisted' 7 7 import {usePalette} from 'lib/hooks/usePalette' 8 8 import { 9 + createBskyAppAbsoluteUrl, 9 10 isBskyRSSUrl, 10 11 isRelativeUrl, 11 - createBskyAppAbsoluteUrl, 12 12 } from 'lib/strings/url-helpers' 13 + import {useModalControls} from '../modals' 13 14 14 15 type StateContext = persisted.Schema['useInAppBrowser'] 15 16 type SetContext = (v: persisted.Schema['useInAppBrowser']) => void ··· 78 79 presentationStyle: 79 80 WebBrowser.WebBrowserPresentationStyle.FULL_SCREEN, 80 81 toolbarColor: pal.colors.backgroundLight, 82 + createTask: false, 81 83 }) 82 84 return 83 85 }