mirror of
https://github.com/nextcloud/server.git
synced 2026-06-12 10:10:49 -04:00
Clear any theming prefixed cache on cache buster increase
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
parent
a691b52daf
commit
541bb71513
1 changed files with 1 additions and 1 deletions
|
|
@ -320,7 +320,7 @@ class ThemingDefaults extends \OC_Defaults {
|
|||
private function increaseCacheBuster() {
|
||||
$cacheBusterKey = $this->config->getAppValue('theming', 'cachebuster', '0');
|
||||
$this->config->setAppValue('theming', 'cachebuster', (int)$cacheBusterKey+1);
|
||||
$this->cacheFactory->createDistributed('theming-')->clear('getScssVariables');
|
||||
$this->cacheFactory->createDistributed('theming-')->clear();
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue