fix(api): fix local URL in integration API

This commit is contained in:
yflory 2026-06-17 15:07:49 +02:00
parent 9808cf25c1
commit cc675f400d

View File

@ -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);
});