Merge branch '1.8.x' into sync-mongodb

This commit is contained in:
ArnabChatterjee20k
2026-03-10 18:43:50 +05:30
committed by GitHub
5 changed files with 103 additions and 10 deletions
+1 -1
View File
@@ -251,7 +251,7 @@ class Comment
$json = \base64_decode($state);
$builds = \json_decode($json, true);
$this->builds = $builds;
$this->builds = \is_array($builds) ? $builds : [];
return $this;
}