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.
2 parents 0442045 + 1e4a71c commit 634848aCopy full SHA for 634848a
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