From 64d095a96bb6ab362ea883aea5d20ae52adc8812 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Wed, 16 Nov 2022 10:06:57 -0600 Subject: [PATCH] Update prod service URL --- src/state/index.ts | 2 +- src/view/lib/strings.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/state/index.ts b/src/state/index.ts index b16b5164..541a9a89 100644 --- a/src/state/index.ts +++ b/src/state/index.ts @@ -7,7 +7,7 @@ import * as storage from './lib/storage' export const IS_PROD_BUILD = true export const LOCAL_DEV_SERVICE = 'http://localhost:2583' export const STAGING_SERVICE = 'https://pds.staging.bsky.dev' -export const PROD_SERVICE = 'https://plc.bsky.social' +export const PROD_SERVICE = 'https://bsky.social' export const DEFAULT_SERVICE = IS_PROD_BUILD ? PROD_SERVICE : LOCAL_DEV_SERVICE const ROOT_STATE_STORAGE_KEY = 'root' const STATE_FETCH_INTERVAL = 15e3 diff --git a/src/view/lib/strings.ts b/src/view/lib/strings.ts index 05b23331..1cbad1a4 100644 --- a/src/view/lib/strings.ts +++ b/src/view/lib/strings.ts @@ -112,7 +112,7 @@ export function toNiceDomain(url: string): string { try { const urlp = new URL(url) if (`https://${urlp.host}` === PROD_SERVICE) { - return 'Bluesky.Social' + return 'Bluesky Social' } return urlp.host } catch (e) {