diff --git a/php/utils/servers-rooms.php b/php/utils/servers-rooms.php index 166a722..07477dd 100644 --- a/php/utils/servers-rooms.php +++ b/php/utils/servers-rooms.php @@ -598,7 +598,10 @@ * Return information for JSON serialization. */ function jsonSerialize(): array { - return get_object_vars($this); + $details = get_object_vars($this); + unset($details['room_hints']); + unset($details['merge_error']); + return $details; } /**