From a2fc5ca6da7277f78e8b917a8268f68457da05e2 Mon Sep 17 00:00:00 2001 From: wukko Date: Wed, 29 May 2024 12:52:37 +0600 Subject: [PATCH] loom: add json stringify to body --- src/modules/processing/services/loom.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/processing/services/loom.js b/src/modules/processing/services/loom.js index 18c5a282..ecb6c534 100644 --- a/src/modules/processing/services/loom.js +++ b/src/modules/processing/services/loom.js @@ -13,12 +13,12 @@ export default async function({ id }) { "apollographql-client-version": "14c0b42", "x-loom-request-source": "loom_web_14c0b42", }, - body: { + body: JSON.stringify({ force_original: false, password: null, anonID: null, deviceID: null - } + }) }) .then(r => r.status === 200 ? r.json() : false) .catch(() => {});