From 2eb1d2b8409adff8c0f5160ec9eddc1c360b89da Mon Sep 17 00:00:00 2001 From: Angelina Filippova Date: Mon, 17 Aug 2020 23:44:29 +0300 Subject: [PATCH] Update relay URL when unfollowing a relay --- src/api/relays.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/relays.js b/src/api/relays.js index 3be0188d..100ad396 100644 --- a/src/api/relays.js +++ b/src/api/relays.js @@ -27,7 +27,7 @@ export async function deleteRelay(relay, authHost, token) { url: '/api/pleroma/admin/relay', method: 'delete', headers: authHeaders(token), - data: { relay_url: `https://${relay}/actor` } + data: { relay_url: `https://${relay}` } }) }