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 8f465af commit 3852076Copy full SHA for 3852076
src/controllers/admin/cache.js
@@ -52,7 +52,7 @@ cacheController.dump = async function (req, res, next) {
52
local: require('../../cache'),
53
};
54
caches = await plugins.hooks.fire('filter:admin.cache.get', caches);
55
- if (!caches[req.query.name]) {
+ if (!caches.hasOwnProperty(req.query.name)) {
56
return next();
57
}
58
0 commit comments