fix: some incoming headers were not displayed

This commit is contained in:
zefie
2024-05-30 16:39:00 -04:00
parent 5cf95e22d9
commit 8c7a6369fa
2 changed files with 5 additions and 6 deletions

View File

@@ -807,8 +807,7 @@ class WTVShared {
new_obj = this.cloneObj(obj)
new_obj["wtv-client-serial-number"] = this.censorSSID(new_obj["wtv-client-serial-number"]);
}
// Assuming cloneObj is necessary for other reasons
return this.cloneObj((new_obj != false) ? new_obj : obj);
return (new_obj != false) ? new_obj : obj;
}
}
return obj;