My browser says (in F12 console of firefox):
SyntaxError client.js:2:1170023
hw https://лемми.опенсорс.рус/static/0799f19b/js/client.js:2
the file starts with
/*! For license information please see client.js.LICENSE.txt */
(()=>{var e,t,n,r,o={45850:(e,t,n)=>{"use strict";n.d(t,
and DeepSeek says that e,t,n,r,o should be separated by spaces, i.e. e, t, n, r, o
The lemmy.ml instance adds that image without problems.
Wonderful day!
The actual script file is minified. And we may see the actual position the error points to:
2:1170023.That is the second line and
1170023character on that line. If we check it out manually, we may see the following, from1169975to1170025character positions:hwmentioned in the error is probably the following function:Yet, these two are valid in terms of JavaScript syntax.
Meanwhile, DeepSeek states utter nonsense. The space is not required in JavaScript declarations. You may check it yourself:
save