Fix broken links in account gallery (#24218)

This commit is contained in:
Christian Schmidt 2023-03-23 05:17:29 +01:00 committed by GitHub
parent 2626097869
commit 16da4a09e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -74,7 +74,7 @@ export default class MediaItem extends ImmutablePureComponent {
if (['audio', 'video'].includes(attachment.get('type'))) {
content = (
<img
src={attachment.get('preview_url') || attachment.getIn(['account', 'avatar_static'])}
src={attachment.get('preview_url') || status.getIn(['account', 'avatar_static'])}
alt={attachment.get('description')}
lang={status.get('language')}
onLoad={this.handleImageLoad}

View File

@ -121,8 +121,8 @@ export const getAccountGallery = createSelector([
let medias = ImmutableList();
statusIds.forEach(statusId => {
const status = statuses.get(statusId);
medias = medias.concat(status.get('media_attachments').map(media => media.set('status', status).set('account', account)));
const status = statuses.get(statusId).set('account', account);
medias = medias.concat(status.get('media_attachments').map(media => media.set('status', status)));
});
return medias;