diff options
Diffstat (limited to 'src/state/queries/video/util.ts')
-rw-r--r-- | src/state/queries/video/util.ts | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/state/queries/video/util.ts b/src/state/queries/video/util.ts index e019848a1..7ea38d8dc 100644 --- a/src/state/queries/video/util.ts +++ b/src/state/queries/video/util.ts @@ -1,15 +1,13 @@ import {useMemo} from 'react' import {AtpAgent} from '@atproto/api' -import {SupportedMimeTypes} from '#/lib/constants' - -const UPLOAD_ENDPOINT = 'https://video.bsky.app/' +import {SupportedMimeTypes, VIDEO_SERVICE} from '#/lib/constants' export const createVideoEndpointUrl = ( route: string, params?: Record<string, string>, ) => { - const url = new URL(`${UPLOAD_ENDPOINT}`) + const url = new URL(VIDEO_SERVICE) url.pathname = route if (params) { for (const key in params) { @@ -22,7 +20,7 @@ export const createVideoEndpointUrl = ( export function useVideoAgent() { return useMemo(() => { return new AtpAgent({ - service: UPLOAD_ENDPOINT, + service: VIDEO_SERVICE, }) }, []) } |