We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0442045 commit 1e4a71cCopy full SHA for 1e4a71c
lib/Service/ExAppOccService.php
@@ -101,7 +101,7 @@ public function getOccCommands(): array {
101
try {
102
$cacheKey = '/ex_occ_commands';
103
$records = $this->cache?->get($cacheKey);
104
- if ($records === null) {
+ if (!is_array($records)) {
105
$records = $this->mapper->findAllEnabled();
106
$this->cache?->set($cacheKey, $records);
107
}
0 commit comments