mirror of https://github.com/tootsuite/mastodon
Test for presence of Application in haml before trying to render details, to fix errors identified by CI
parent
d6bc0e8db4
commit
6c002cf615
|
@ -28,9 +28,10 @@
|
|||
= link_to TagManager.instance.url_for(status), class: 'detailed-status__datetime u-url u-uid', target: @external_links ? '_blank' : nil, rel: 'noopener' do
|
||||
%span= l(status.created_at)
|
||||
·
|
||||
= link_to status.application.website, class: 'detailed-status__application', target: @external_links ? '_blank' : nil, rel: 'noooper' do
|
||||
%span= status.application.name
|
||||
·
|
||||
- if status.application
|
||||
= link_to status.application.website, class: 'detailed-status__application', target: @external_links ? '_blank' : nil, rel: 'noooper' do
|
||||
%span= status.application.name
|
||||
·
|
||||
%span
|
||||
= fa_icon('retweet')
|
||||
%span= status.reblogs.count
|
||||
|
|
Loading…
Reference in New Issue