This commit is contained in:
2024-05-02 15:21:08 +02:00
parent c4037684ba
commit 8f4650227f
2 changed files with 4 additions and 3 deletions

View File

@@ -30,7 +30,7 @@ class DocumentRoute extends Route {
protected function readExtra() {
parent::readExtra();
$this->args = json_decode($this->extra) ?? [];
$this->args = json_decode($this->extra, true) ?? [];
}
public function preInsert(array &$row) {