Skip to content

Commit

Permalink
fix autoescape for empty includes
Browse files Browse the repository at this point in the history
  • Loading branch information
tgabi333 committed Dec 9, 2019
1 parent f004945 commit e8f15bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/twig.core.js
Original file line number Diff line number Diff line change
Expand Up @@ -709,7 +709,7 @@ module.exports = function (Twig) {
return '';
}

const joinedOutput = escapedOutput.join('')
const joinedOutput = escapedOutput.join('');
if (joinedOutput.length === 0) {
return '';
}
Expand Down

0 comments on commit e8f15bd

Please sign in to comment.