diff --git a/src/controller/room.php b/src/controller/room.php index 4b420ef..abdd69e 100644 --- a/src/controller/room.php +++ b/src/controller/room.php @@ -518,6 +518,12 @@ class Room return null; } + // Skip meta records + if (str_starts_with($data['key'], '_')) + { + return null; + } + // Validate value format allowed in settings if (!preg_match($this->_config->kevachat->post->value->regex, $data['value'])) {