We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e9e50d1 + 682d30f commit 3d6a065Copy full SHA for 3d6a065
src/main/java/com/hubspot/jinjava/interpret/JinjavaInterpreter.java
@@ -710,6 +710,10 @@ public BlockInfo getCurrentBlock() {
710
}
711
712
public void addError(TemplateError templateError) {
713
+ if (templateError == null) {
714
+ return;
715
+ }
716
+
717
if (context.getThrowInterpreterErrors()) {
718
if (templateError.getSeverity() == ErrorType.FATAL) {
719
// Throw fatal errors when locating deferred words.
0 commit comments