Mirror — see github.com/blacksky-algorithms/blacksky.community
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix share URLs to use blacksky.community instead of staging

+2 -2
+2 -2
src/lib/strings/url-helpers.ts
··· 7 7 import {startUriToStarterPackUri} from '#/lib/strings/starter-pack' 8 8 import {logger} from '#/logger' 9 9 10 - export const BSKY_APP_HOST = 'https://staging.blacksky.community' 10 + export const BSKY_APP_HOST = 'https://blacksky.community' 11 11 const BSKY_TRUSTED_HOSTS = [ 12 12 'blacksky\\.community', 13 13 'staging\\.blacksky\\.community', ··· 88 88 89 89 export function toShareUrl(url: string): string { 90 90 if (!url.startsWith('https')) { 91 - const urlp = new URL('https://staging.blacksky.community') 91 + const urlp = new URL('https://blacksky.community') 92 92 urlp.pathname = url 93 93 url = urlp.toString() 94 94 }