diff --git a/src/js/client.js b/src/js/client.js index eff7eb86a..9a501aab6 100644 --- a/src/js/client.js +++ b/src/js/client.js @@ -333,7 +333,7 @@ angular.module('Application').service('Client', ['$http', '$interval', '$timeout this._userInfo.twoFactorAuthenticationEnabled = userInfo.twoFactorAuthenticationEnabled; this._userInfo.admin = userInfo.admin; this._userInfo.source = userInfo.source; - this._userInfo.avatarUrl = userInfo.avatarUrl + '?' + Date.now(); // we add the timestamp to avoid caching + this._userInfo.avatarUrl = userInfo.avatarUrl + '?s=128&default=mp&ts=' + Date.now(); // we add the timestamp to avoid caching }; Client.prototype.setConfig = function (config) {