You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/Users/andrey/ttt/node_modules/@protobufjs/base64/index.js:73
return String.fromCharCode.apply(String, string);
^
RangeError: Maximum call stack size exceeded
at Object.encode (/Users/andrey/ttt/node_modules/@protobufjs/base64/index.js:73:32)
at Type._AwesomeMessage$toObject [as toObject] (eval at eof (/Users/andrey/ttt/node_modules/@protobufjs/codegen/index.js:103:25), <anonymous>:11:50)
at Object.<anonymous> (/Users/andrey/ttt/1.js:27:29)
at Module._compile (module.js:570:32)
at Object.Module._extensions..js (module.js:579:10)
at Module.load (module.js:487:32)
at tryModuleLoad (module.js:446:12)
at Function.Module._load (module.js:438:3)
at Module.runMain (module.js:604:10)
at run (bootstrap_node.js:393:7)
Quick and dirty fix could be something like:
- return String.fromCharCode.apply(String, string);+ var enc = require("text-encoding")+ var encoder = new enc.TextEncoder();+ return encoder.encode(string)
The text was updated successfully, but these errors were encountered:
protobuf.js version: 6.7.3
Unable to decode big message.
Quick and dirty fix could be something like:
The text was updated successfully, but these errors were encountered: