filter out empty filecache extension values

Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
Robin Appelman 2019-11-13 11:28:14 +01:00
parent b36f08be43
commit 4c97181128
No known key found for this signature in database
GPG Key ID: 42B69D8A64526EFB
1 changed files with 1 additions and 1 deletions

View File

@ -441,7 +441,7 @@ class Cache implements ICache {
$extensionParams[$name] = $value;
}
}
return [$params, $extensionParams];
return [$params, array_filter($extensionParams)];
}
/**