Rename to bsky.app

This commit is contained in:
Paul Frazee 2022-11-05 13:56:22 -05:00
parent b6f3a234da
commit 2377431901
17 changed files with 32 additions and 32 deletions

View file

@ -3,9 +3,9 @@ import {isIOS, isAndroid, isNative, isWeb} from './detection'
export function makeAppUrl(path = '') {
if (isIOS) {
return `pubsqapp://${path}`
return `bskyapp://${path}`
} else if (isAndroid) {
return `pubsq://app${path}`
return `bsky://app${path}`
} else {
// @ts-ignore window exists -prf
return `${window.location.origin}${path}`