]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/middlewares/validators/webfinger.ts
Translated using Weblate (Persian)
[github/Chocobozzz/PeerTube.git] / server / middlewares / validators / webfinger.ts
index 1313608203b811f892aed39cb71f82f10d3136cb..dcfba99fa84551bddaf5c256c7be6c154de3b7ea 100644 (file)
@@ -1,18 +1,16 @@
-import * as express from 'express'
+import express from 'express'
 import { query } from 'express-validator'
 import { HttpStatusCode } from '../../../shared/models/http/http-error-codes'
 import { isWebfingerLocalResourceValid } from '../../helpers/custom-validators/webfinger'
 import { getHostWithPort } from '../../helpers/express-utils'
-import { logger } from '../../helpers/logger'
 import { ActorModel } from '../../models/actor/actor'
 import { areValidationErrors } from './shared'
 
 const webfingerValidator = [
-  query('resource').custom(isWebfingerLocalResourceValid).withMessage('Should have a valid webfinger resource'),
+  query('resource')
+    .custom(isWebfingerLocalResourceValid),
 
   async (req: express.Request, res: express.Response, next: express.NextFunction) => {
-    logger.debug('Checking webfinger parameters', { parameters: req.query })
-
     if (areValidationErrors(req, res)) return
 
     // Remove 'acct:' from the beginning of the string