-
Notifications
You must be signed in to change notification settings - Fork 314
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
Maximum call stack size exceeded. #94
Comments
Same issue v2.4.0 gifify with giflossy. |
I think the error is due to: [ffmpeg, convert, gifsicle].forEach(function handleErrors(child) {
child.on('error', gifsicle.emit.bind(gifsicle, 'error'));
//...
}); The |
Any of you can try to fix this? I am not yet using node v8. |
It's not v8 specific. Whenever the gifsicle object emits an error, you get an infinite loop of emitting more errors. You need to handle gifsicle's error events differently and it will fix this issue. What the error was that gifsicle emitted is a different issue. |
Taking PRs to solve this. |
OS: Debian 8 x64
Node: v8.1.0
NPM: v5.0.3
Receiving this error:
With this code:
The text was updated successfully, but these errors were encountered: