Bugfix for when profile has no avatar attribute
This commit is contained in:
Родитель
2e5cd8cdcd
Коммит
3bab1afb3b
|
@ -32,6 +32,8 @@ def user_avatar(user, secure=False, size=256, rating='pg', default=''):
|
|||
profile = user.get_profile()
|
||||
if profile.avatar:
|
||||
return profile.avatar.url
|
||||
except AttributeError:
|
||||
pass
|
||||
except SiteProfileNotAvailable:
|
||||
pass
|
||||
except ObjectDoesNotExist:
|
||||
|
|
Загрузка…
Ссылка в новой задаче