Skip to content

Commit

Permalink
Correct deleting of GIF generator object on abort
Browse files Browse the repository at this point in the history
  • Loading branch information
caleb531 committed Sep 16, 2018
1 parent 903c4c6 commit 7ae72a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/scripts/components/export.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class ExportComponent {
abortGifExport() {
if (this.gifGenerator) {
this.gifGenerator.abort();
this.gifGenerator = false;
this.gifGenerator = null;
}
}

Expand Down

0 comments on commit 7ae72a6

Please sign in to comment.