From 283628356cef39df4410d197028305a1b6d363c3 Mon Sep 17 00:00:00 2001 From: ArneBo Date: Sat, 3 May 2025 23:57:33 +0200 Subject: [PATCH] fix(front): subscribe to federated channel link change --- front/src/components/RemoteSearchForm.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/src/components/RemoteSearchForm.vue b/front/src/components/RemoteSearchForm.vue index 122a7f0ed..46240c9a1 100644 --- a/front/src/components/RemoteSearchForm.vue +++ b/front/src/components/RemoteSearchForm.vue @@ -120,7 +120,7 @@ const createFetch = async () => { isLoading.value = true try { - const response = await axios.post('federation/fetches/', { object: id.value }) + const response = await axios.post('federation/fetches/', { object_uri: id.value }) obj.value = response.data if (response.data.status === 'errored' || response.data.status === 'skipped') {