-
Notifications
You must be signed in to change notification settings - Fork 361
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bug Report] Illegal Invocation in JsQuery #266
Comments
I think this happens only in dockerized environment. |
are you using 1.1.5 self-hosted OB? |
@lmx1117 I use self-hosted, but the issue also occurs in cloud, too. |
I’m sorry, it only occurs in self-hosted. |
Got it, thank you, we will check it asap |
No, it isn't fixed. Same error message. |
Tested with:
|
I'll try with explicit sha256 digest: docker run -it --platform linux/amd64 -p 3000:3000 openblocksdev/openblocks-ce@sha256:b3f68e27305e8993e509a79e06fa17c4abece6386ccff87accf0c5ff6870c612 |
Not working anyway :/ |
@qbx2 sorry about that 🥲, we will check it again |
@YoJayz I just tried v1.1.6 and confirmed that it works. Thank you for support! |
When I run a jsQuery with script=
return btoa('1')
, it fails with the error messageIllegal invocation
. My colleague said it worked in v1.1.4 by the way. Anyway, I found a workaround which is to use script=return btoa.call(null, '1')
to setthis
parameter tonull
, instead ofundefined
.The text was updated successfully, but these errors were encountered: