X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fhelpers%2Fcustom-validators%2Fwebfinger.ts;h=dd914341e8364c8d5020953ad296c2757c2f2056;hb=795212f7acc690c88c86d0fab8772f6564d59cb8;hp=80a7e4a9d9c46d28baa0aecd9e1434ee751e746d;hpb=06a05d5f4784a7cbb27aa1188385b5679845dad8;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/helpers/custom-validators/webfinger.ts b/server/helpers/custom-validators/webfinger.ts index 80a7e4a9d..dd914341e 100644 --- a/server/helpers/custom-validators/webfinger.ts +++ b/server/helpers/custom-validators/webfinger.ts @@ -1,4 +1,4 @@ -import { CONFIG, REMOTE_SCHEME } from '../../initializers' +import { REMOTE_SCHEME, WEBSERVER } from '../../initializers/constants' import { sanitizeHost } from '../core-utils' import { exists } from './misc' @@ -11,7 +11,7 @@ function isWebfingerLocalResourceValid (value: string) { if (actorParts.length !== 2) return false const host = actorParts[1] - return sanitizeHost(host, REMOTE_SCHEME.HTTP) === CONFIG.WEBSERVER.HOST + return sanitizeHost(host, REMOTE_SCHEME.HTTP) === WEBSERVER.HOST } // ---------------------------------------------------------------------------