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
I incorrectly attempted to share a recording with a description that included double quote characters. This resulted in the following error:
$ terminalizer share launch.yml
Please enter some details about your recording
? Title title
? Description ""
? Tags such as git,bash,game linux
/home/regis/venvs/node_modules/terminalizer/commands/share.js:201
return reject(body.errors.join('\n'));
^
TypeError: Cannot read property 'join' of undefined
This error is caused by the fact that body is a string, not an object. It is resolved by adding body = JSON.parse(body); at the beginning of the request callback. Would you like me to open a PR?
The text was updated successfully, but these errors were encountered:
I incorrectly attempted to share a recording with a description that included double quote characters. This resulted in the following error:
This error is caused by the fact that
body
is a string, not an object. It is resolved by addingbody = JSON.parse(body);
at the beginning of the request callback. Would you like me to open a PR?The text was updated successfully, but these errors were encountered: