···1920 const ASSOCIATED_DOMAINS = [
21 'applinks:witchsky.app',
022 // When testing local services, enter an ngrok (et al) domain here. It must use a standard HTTP/HTTPS port.
23 ...(IS_DEV || IS_TESTFLIGHT ? [] : []),
24 ]
···1920 const ASSOCIATED_DOMAINS = [
21 'applinks:witchsky.app',
22+ 'applinks:bsky.app',
23 // When testing local services, enter an ngrok (et al) domain here. It must use a standard HTTP/HTTPS port.
24 ...(IS_DEV || IS_TESTFLIGHT ? [] : []),
25 ]
+3-3
src/Navigation.tsx
···843844const LINKING = {
845 // TODO figure out what we are going to use
846- // note: `bluesky://` is what is used in app.config.js
847- prefixes: ['bsky://', 'bluesky://', 'https://bsky.app'],
848849 getPathFromState(state: State) {
850 // find the current node in the navigation tree
···11441145 if (IS_WEB) {
1146 const referrerInfo = Referrer.getReferrerInfo()
1147- if (referrerInfo && referrerInfo.hostname !== 'bsky.app') {
1148 logEvent('deepLink:referrerReceived', {
1149 to: window.location.href,
1150 referrer: referrerInfo?.referrer,
···843844const LINKING = {
845 // TODO figure out what we are going to use
846+ // note: `bluesky://` and `witchsky://` is what is used in app.config.js
847+ prefixes: ['bsky://', 'bluesky://', 'witchsky://', 'https://bsky.app', 'https://witchsky.app'],
848849 getPathFromState(state: State) {
850 // find the current node in the navigation tree
···11441145 if (IS_WEB) {
1146 const referrerInfo = Referrer.getReferrerInfo()
1147+ if (referrerInfo && referrerInfo.hostname !== 'bsky.app' && referrerInfo.hostname !== 'witchsky.app') {
1148 logEvent('deepLink:referrerReceived', {
1149 to: window.location.href,
1150 referrer: referrerInfo?.referrer,