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 d69debe + fcf1e42 commit 6799690Copy full SHA for 6799690
TLS-Server-Scanner/src/main/java/de/rub/nds/tlsscanner/serverscanner/report/SiteReportPrinter.java
@@ -865,7 +865,7 @@ public StringBuilder appendRaccoonAttackDetails(StringBuilder builder) {
865
public StringBuilder appendInformationLeakTestList(StringBuilder builder,
866
List<InformationLeakTest> informationLeakTestList, String heading) {
867
prettyAppendHeading(builder, heading);
868
- if (report.getDirectRaccoonResultList() == null || report.getDirectRaccoonResultList().isEmpty()) {
+ if (informationLeakTestList == null || informationLeakTestList.isEmpty()) {
869
prettyAppend(builder, "No Testresults");
870
} else {
871
for (InformationLeakTest testResult : informationLeakTestList) {
0 commit comments