Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Fix: move imports and constants for the api-polyfill over from their old location

+4 -8
+3
src/state/lib/api-polyfill.ts
··· 1 1 import {sessionClient as AtpApi} from '@atproto/api' 2 + import RNFS from 'react-native-fs' 3 + 4 + const TIMEOUT = 10e3 // 10s 2 5 3 6 export function doPolyfill() { 4 7 AtpApi.xrpc.fetch = fetchHandler
+1 -8
src/state/lib/api.ts
··· 4 4 */ 5 5 6 6 // import {ReactNativeStore} from './auth' 7 - import { 8 - sessionClient as AtpApi, 9 - AppBskyEmbedImages, 10 - AppBskyEmbedExternal, 11 - } from '@atproto/api' 12 - import RNFS from 'react-native-fs' 7 + import {AppBskyEmbedImages, AppBskyEmbedExternal} from '@atproto/api' 13 8 import {AtUri} from '../../third-party/uri' 14 9 import {RootStoreModel} from '../models/root-store' 15 10 import {extractEntities} from '../../lib/strings' 16 11 import {isNetworkError} from '../../lib/errors' 17 12 import {LinkMeta} from '../../lib/link-meta' 18 13 import {Image} from '../../lib/images' 19 - 20 - const TIMEOUT = 10e3 // 10s 21 14 22 15 export interface ExternalEmbedDraft { 23 16 uri: string