It does not work <@U589QURRQ>
# announcements
p
It does not work @diesieben07
d
paulwoitaschek: Doctor, it hurts!
Seriously though, what is the problem?
p
The problem was with the kotlin converter
It translated: `return (b1 - (readAsLength ? 0x10 : 0)) << 24 `…
to
return b1 - if (readAsLength) 0x10 else 0 shl
And was missing the brackets so
0 shl 24
got the algorithm wrong
u
Just ctrl+shift+alt+k
Or cmd instead of ctrl
p
@umar the converter was wrong
u
Oh, missed
t
in It translated.