fix deleted account avatar

This commit is contained in:
3nprob 2021-10-08 16:37:24 +09:00
parent 43141a802e
commit bb846def85
1 changed files with 5 additions and 2 deletions

View File

@ -6,8 +6,11 @@ mixin commentbox(comment)
div(class='Meta')
div(class='GalleryComment-avatar-bar')
div(class='avatar')
a(title='View profile of '+comment.account.username, href='/user/'+comment.account.username)
span(title=comment.account.username, style='background-image: url("' + util.proxyURL(comment.account.avatar) + '");')
if comment.account.username === '[deleted]'
span(title='[deleted]')
else
a(title='View profile of '+comment.account.username, href='/user/'+comment.account.username)
span(title=comment.account.username, style='background-image: url("' + util.proxyURL(comment.account.avatar) + '");')
a(class='author-name', title='View profile of '+comment.account.username, href='/user/'+comment.account.username) #{comment.account.username}
span(class="date", title=comment.created_at)
span(class="delimiter") •