fix: correct nft checks output

This commit is contained in:
divocat
2025-10-23 12:22:04 +03:00
parent 5573fce1b1
commit b5eec292e0

View File

@@ -42,7 +42,7 @@ export async function runNftCheck() {
Boolean(data.rules_mangle_output_counters) &&
Boolean(data.rules_proxy_exist) &&
Boolean(data.rules_proxy_counters) &&
Boolean(data.rules_other_mark_exist);
!data.rules_other_mark_exist;
const atLeastOneGood =
Boolean(data.table_exist) ||
@@ -52,7 +52,7 @@ export async function runNftCheck() {
Boolean(data.rules_mangle_output_counters) ||
Boolean(data.rules_proxy_exist) ||
Boolean(data.rules_proxy_counters) ||
Boolean(data.rules_other_mark_exist);
!data.rules_other_mark_exist;
function getStatus() {
if (allGood) {