Skip to content

Commit

Permalink
fix(stickerfy): fixed gif conversion not working
Browse files Browse the repository at this point in the history
  • Loading branch information
SethCohen committed Dec 30, 2022
1 parent a6620cf commit 9d99644
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/stickerfy.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export default {
.resize(320, 320, { fit: 'contain', background: { r: 0, g: 0, b: 0, alpha: 0 } })
.gif({ colours: 32, dither: 0.0 })
.toFile(`${path}.gif`);
exec(`./helpers/gif2apng ${path}.gif`,
exec(`./src/helpers/gif2apng ${path}.gif`,
async (execError, stdout, stderr) => {
if (execError) throw execError;
if (stderr) console.error(`gif2apng stderr ${stderr}`);
Expand Down

0 comments on commit 9d99644

Please sign in to comment.