about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/app.json4
-rw-r--r--src/platform/urls.tsx4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/app.json b/src/app.json
index 76a5223a6..0f8282d5f 100644
--- a/src/app.json
+++ b/src/app.json
@@ -1,4 +1,4 @@
 {
-  "name": "xyz.blueskyweb.pubsq",
-  "displayName": "pubsq"
+  "name": "app.bsky",
+  "displayName": "Bluesky"
 }
\ No newline at end of file
diff --git a/src/platform/urls.tsx b/src/platform/urls.tsx
index 048c92f2e..0f24dd678 100644
--- a/src/platform/urls.tsx
+++ b/src/platform/urls.tsx
@@ -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}`