From 6d4ac65a929ecb54834910b2fbb73919508ecfd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=A4fer?= Date: Mon, 25 Mar 2019 17:46:44 +0100 Subject: [PATCH] Apparently this change got overlooked --- backend/src/activitypub/ActivityPub.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/activitypub/ActivityPub.js b/backend/src/activitypub/ActivityPub.js index c02193abd..6c3fb4082 100644 --- a/backend/src/activitypub/ActivityPub.js +++ b/backend/src/activitypub/ActivityPub.js @@ -31,7 +31,7 @@ export default class ActivityPub { static init (server) { if (!activityPub) { dotenv.config() - const url = new URL(process.env.GRAPHQL_URI) + const url = new URL(process.env.CLIENT_URI) activityPub = new ActivityPub(url.host || 'localhost:4000', url.origin) // integrate into running graphql express server