diff options
author | Chocobozzz <me@florianbigard.com> | 2022-08-11 10:43:31 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-08-11 10:43:31 +0200 |
commit | b1053a30f6979ad097965efd1fa661ed37209f78 (patch) | |
tree | 537e7377b0adbc35943ca10877bb0ee29578707e /server/helpers/custom-validators | |
parent | f4057afd20c2767c7e434a8b53d32cf57ed56a05 (diff) | |
download | PeerTube-b1053a30f6979ad097965efd1fa661ed37209f78.tar.gz PeerTube-b1053a30f6979ad097965efd1fa661ed37209f78.tar.zst PeerTube-b1053a30f6979ad097965efd1fa661ed37209f78.zip |
Add ability to use docker on local
Diffstat (limited to 'server/helpers/custom-validators')
-rw-r--r-- | server/helpers/custom-validators/activitypub/misc.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/helpers/custom-validators/activitypub/misc.ts b/server/helpers/custom-validators/activitypub/misc.ts index ff15f115f..4619f0eb5 100644 --- a/server/helpers/custom-validators/activitypub/misc.ts +++ b/server/helpers/custom-validators/activitypub/misc.ts | |||
@@ -1,6 +1,6 @@ | |||
1 | import validator from 'validator' | 1 | import validator from 'validator' |
2 | import { CONFIG } from '@server/initializers/config' | ||
2 | import { CONSTRAINTS_FIELDS } from '../../../initializers/constants' | 3 | import { CONSTRAINTS_FIELDS } from '../../../initializers/constants' |
3 | import { isTestOrDevInstance } from '../../core-utils' | ||
4 | import { exists } from '../misc' | 4 | import { exists } from '../misc' |
5 | 5 | ||
6 | function isUrlValid (url: string) { | 6 | function isUrlValid (url: string) { |
@@ -13,7 +13,7 @@ function isUrlValid (url: string) { | |||
13 | } | 13 | } |
14 | 14 | ||
15 | // We validate 'localhost', so we don't have the top level domain | 15 | // We validate 'localhost', so we don't have the top level domain |
16 | if (isTestOrDevInstance()) { | 16 | if (CONFIG.WEBSERVER.HOSTNAME === 'localhost') { |
17 | isURLOptions.require_tld = false | 17 | isURLOptions.require_tld = false |
18 | } | 18 | } |
19 | 19 | ||