We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 139f7e6 commit aa1ebe0Copy full SHA for aa1ebe0
1 file changed
src/lib/strings/url-helpers.ts
@@ -7,7 +7,7 @@ import {isInvalidHandle} from '#/lib/strings/handles'
7
import {startUriToStarterPackUri} from '#/lib/strings/starter-pack'
8
import {logger} from '#/logger'
9
10
-export const BSKY_APP_HOST = 'https://staging.blacksky.community'
+export const BSKY_APP_HOST = 'https://blacksky.community'
11
const BSKY_TRUSTED_HOSTS = [
12
'blacksky\\.community',
13
'staging\\.blacksky\\.community',
@@ -88,7 +88,7 @@ export function toShortUrl(url: string): string {
88
89
export function toShareUrl(url: string): string {
90
if (!url.startsWith('https')) {
91
- const urlp = new URL('https://staging.blacksky.community')
+ const urlp = new URL('https://blacksky.community')
92
urlp.pathname = url
93
url = urlp.toString()
94
}
0 commit comments