From cc675f400ded615ec2897d32e9eb21e40671f125 Mon Sep 17 00:00:00 2001 From: yflory Date: Wed, 17 Jun 2026 15:07:49 +0200 Subject: [PATCH] fix(api): fix local URL in integration API --- www/integration/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/integration/main.js b/www/integration/main.js index f5d31daa7..f1ad8bae4 100644 --- a/www/integration/main.js +++ b/www/integration/main.js @@ -230,7 +230,7 @@ define([ return Config.httpUnsafeOrigin; }; let getBlobClient = (cb) => { - chan.send('GET_BLOB', obj => { + chan.send('GET_BLOB', {}, obj => { if (obj?.error) { console.error(obj?.error); } cb(obj?.blob); });