Skip to content

Commit aa1ebe0

Browse files
committed
Fix share URLs to use blacksky.community instead of staging
1 parent 139f7e6 commit aa1ebe0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/lib/strings/url-helpers.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {isInvalidHandle} from '#/lib/strings/handles'
77
import {startUriToStarterPackUri} from '#/lib/strings/starter-pack'
88
import {logger} from '#/logger'
99

10-
export const BSKY_APP_HOST = 'https://staging.blacksky.community'
10+
export const BSKY_APP_HOST = 'https://blacksky.community'
1111
const BSKY_TRUSTED_HOSTS = [
1212
'blacksky\\.community',
1313
'staging\\.blacksky\\.community',
@@ -88,7 +88,7 @@ export function toShortUrl(url: string): string {
8888

8989
export function toShareUrl(url: string): string {
9090
if (!url.startsWith('https')) {
91-
const urlp = new URL('https://staging.blacksky.community')
91+
const urlp = new URL('https://blacksky.community')
9292
urlp.pathname = url
9393
url = urlp.toString()
9494
}

0 commit comments

Comments
 (0)