Fix static URL when disable autoplay (#8548)

This commit is contained in:
Yamagishi Kazutoshi 2018-09-01 23:09:24 +09:00 committed by Eugen Rochko
parent 08721170da
commit 0e661dd2e9
2 changed files with 4 additions and 4 deletions

View file

@ -8,9 +8,9 @@
.status__avatar
%div
- if current_account&.user&.setting_auto_play_gif || autoplay
= image_tag status.account.avatar(:original), width: 48, height: 48, alt: '', class: 'u-photo account__avatar'
= image_tag status.account.avatar_original_url, width: 48, height: 48, alt: '', class: 'u-photo account__avatar'
- else
= image_tag status.account.avatar(:static), width: 48, height: 48, alt: '', class: 'u-photo account__avatar'
= image_tag status.account.avatar_static_url, width: 48, height: 48, alt: '', class: 'u-photo account__avatar'
%span.display-name
%bdi
%strong.display-name__html.p-name.emojify= display_name(status.account, custom_emojify: true, autoplay: autoplay)