diff sat_templates/templates/bulma/components/avatar.html @ 233:1215a6e2385f

components/avatar: fixed avatar if `identity.avatar_basename` is None
author Goffi <goffi@goffi.org>
date Tue, 19 May 2020 18:40:53 +0200
parents 0e69b5843c2f
children 878e7aee0e4a
line wrap: on
line diff
--- a/sat_templates/templates/bulma/components/avatar.html	Tue May 19 18:40:02 2020 +0200
+++ b/sat_templates/templates/bulma/components/avatar.html	Tue May 19 18:40:53 2020 +0200
@@ -1,7 +1,7 @@
 {% macro avatar(jid, class="is-48x48") %}
     {%- if identities is defined -%}
         {% set identity = identities[jid] %}
-        {%- if identity.avatar_basename is defined %}
+        {%- if identity.avatar_basename %}
         <div class="is-avatar image {{class}}">
             <img src="/cache/common/{{identities[jid].avatar_basename}}">
         </div>