mirror of
https://github.com/nextcloud/server.git
synced 2026-04-27 17:18:48 -04:00
Merge pull request #31410 from nextcloud/backport/31354/stable23
[stable23] Fix caching of the user avatar
This commit is contained in:
commit
a1117d14c3
2 changed files with 2 additions and 1 deletions
|
|
@ -73,6 +73,7 @@ script('settings', [
|
|||
|
||||
<div id="cropper" class="hidden">
|
||||
<div class="inner-container">
|
||||
<p style="width: 300px; margin-top: 0.5rem"><?php p($l->t('Please note that it can take up to 24 hours for the avatar to get updated everywhere.')); ?></p>
|
||||
<div class="inlineblock button" id="abortcropperbutton"><?php p($l->t('Cancel')); ?></div>
|
||||
<div class="inlineblock button primary" id="sendcropperbutton"><?php p($l->t('Choose as profile picture')); ?></div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -134,7 +134,7 @@ class AvatarController extends Controller {
|
|||
}
|
||||
|
||||
// Cache for 1 day
|
||||
$response->cacheFor(60 * 60 * 24);
|
||||
$response->cacheFor(60 * 60 * 24, false, true);
|
||||
return $response;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue