Rename to bsky.app

This commit is contained in:
Paul Frazee
2022-11-05 13:56:22 -05:00
parent 6703f0c068
commit b724b0d3eb
17 changed files with 32 additions and 32 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
{
"name": "xyz.blueskyweb.pubsq",
"displayName": "pubsq"
"name": "app.bsky",
"displayName": "Bluesky"
}
+2 -2
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}`