···19192020 const ASSOCIATED_DOMAINS = [
2121 'applinks:witchsky.app',
2222+ 'applinks:bsky.app',
2223 // When testing local services, enter an ngrok (et al) domain here. It must use a standard HTTP/HTTPS port.
2324 ...(IS_DEV || IS_TESTFLIGHT ? [] : []),
2425 ]
+3-3
src/Navigation.tsx
···843843844844const LINKING = {
845845 // TODO figure out what we are going to use
846846- // note: `bluesky://` is what is used in app.config.js
847847- prefixes: ['bsky://', 'bluesky://', 'https://bsky.app'],
846846+ // note: `bluesky://` and `witchsky://` is what is used in app.config.js
847847+ prefixes: ['bsky://', 'bluesky://', 'witchsky://', 'https://bsky.app', 'https://witchsky.app'],
848848849849 getPathFromState(state: State) {
850850 // find the current node in the navigation tree
···1144114411451145 if (IS_WEB) {
11461146 const referrerInfo = Referrer.getReferrerInfo()
11471147- if (referrerInfo && referrerInfo.hostname !== 'bsky.app') {
11471147+ if (referrerInfo && referrerInfo.hostname !== 'bsky.app' && referrerInfo.hostname !== 'witchsky.app') {
11481148 logEvent('deepLink:referrerReceived', {
11491149 to: window.location.href,
11501150 referrer: referrerInfo?.referrer,