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 600aecb + 386477e commit 589b6dfCopy full SHA for 589b6df
padd.sh
@@ -403,6 +403,19 @@ GetSummaryInformation() {
403
top_domain_raw=$(GetPADDValue top_domain)
404
405
top_client_raw=$(GetPADDValue top_client)
406
+
407
+ privacy_level=$(GetPADDValue config.privacy_level)
408
409
+ # Substitute 'null' values returned by FTL for privacy level >1
410
+ if [ "${privacy_level}" -ge "1" ]; then
411
+ top_domain_raw="hidden by privacy level"
412
+ top_blocked_raw="hidden by privacy level"
413
+ latest_blocked_raw="hidden by privacy level"
414
+ fi
415
+ if [ "${privacy_level}" -ge "2" ]; then
416
+ top_client_raw="hidden by privacy level"
417
418
419
}
420
421
GetSystemInformation() {
0 commit comments