From 3b8646b44e9a5c471f2f756012e64816d8f42498 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Thu, 28 Jan 2021 00:51:03 +0100 Subject: [PATCH] - lint fix --- backend/src/activitypub/routes/webfinger.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/activitypub/routes/webfinger.spec.js b/backend/src/activitypub/routes/webfinger.spec.js index d392da01c..528490541 100644 --- a/backend/src/activitypub/routes/webfinger.spec.js +++ b/backend/src/activitypub/routes/webfinger.spec.js @@ -104,7 +104,7 @@ describe('webfinger', () => { type: 'application/activity+json', }, ], - subject: `acct:some-user@${(new URL(CONFIG.CLIENT_URI)).host}`, + subject: `acct:some-user@${new URL(CONFIG.CLIENT_URI).host}`, }) }) })