Skip to content

Commit

Permalink
fix #4467; avoid drawing corrupt path
Browse files Browse the repository at this point in the history
  • Loading branch information
junedchhipa committed Oct 25, 2024
1 parent 38e2718 commit c180f09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/Animations.js
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ export default class Animations {
}

if (
!pathTo ||
!pathTo.trim() ||
pathTo.indexOf('undefined') > -1 ||
pathTo.indexOf('NaN') > -1
) {
Expand Down

0 comments on commit c180f09

Please sign in to comment.