We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8f730a4 + 64c191f commit 8e239ecCopy full SHA for 8e239ec
scripts/js/queries.js
@@ -99,7 +99,9 @@ function parseQueryStatus(data) {
99
case "FORWARDED":
100
colorClass = "text-green";
101
icon = "fa-solid fa-cloud-download-alt";
102
- fieldtext = "Forwarded to " + data.upstream;
+ fieldtext =
103
+ (data.reply.type !== "UNKNOWN" ? "Forwarded, reply from " : "Forwarded to ") +
104
+ data.upstream;
105
buttontext =
106
'<button type="button" class="btn btn-default btn-sm text-red btn-blacklist"><i class="fa fa-ban"></i> Deny</button>';
107
break;
0 commit comments