mirror of
https://gitlab.com/idotj/mastodon-embed-timeline.git
synced 2025-05-24 08:52:46 +00:00
Show retoots media in timeline
This commit is contained in:
parent
158acb9a24
commit
1176d6200b
@ -153,6 +153,11 @@ MastodonApi.prototype.getToots = function () {
|
||||
media = this.replaceMedias(status_.media_attachments[picid], status_.sensitive);
|
||||
}
|
||||
}
|
||||
if (status_.reblog && status_.reblog.media_attachments.length > 0 ) {
|
||||
for (let picid in status_.reblog.media_attachments) {
|
||||
media = this.replaceMedias(status_.reblog.media_attachments[picid], status_.sensitive);
|
||||
}
|
||||
}
|
||||
|
||||
// Poll
|
||||
let poll = '';
|
||||
|
Loading…
x
Reference in New Issue
Block a user