chore: update deps (#14755)

This commit is contained in:
Daniel Dietzler 2024-12-18 15:19:48 +01:00 committed by GitHub
parent a03f4f5610
commit 6a855f6331
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
38 changed files with 4610 additions and 14215 deletions

View file

@ -24,6 +24,6 @@ export const getActivationKey = async (licenseKey: string): Promise<string> => {
export const getLicenseLink = (license: ImmichProduct) => {
const url = new URL('/', PUBLIC_IMMICH_BUY_HOST);
url.searchParams.append('productId', license);
url.searchParams.append('instanceUrl', get(serverConfig).externalDomain || window.origin);
url.searchParams.append('instanceUrl', get(serverConfig).externalDomain || globalThis.origin);
return url.href;
};