Skip to content
This repository was archived by the owner on Dec 12, 2024. It is now read-only.

Commit 4f5b212

Browse files
committed
fix: fixed dmarc for empty txt record (if we return true it will attempt to parse the result, which results with a policy.split is not a function error
1 parent a90347b commit 4f5b212

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -933,7 +933,7 @@ class ForwardEmail {
933933
logger.error(err);
934934
// if there's an error then assume that we need to rewrite
935935
// with a friendly-from, for whatever reason
936-
return true;
936+
return false;
937937
}
938938
}
939939

0 commit comments

Comments
 (0)