mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 03:36:07 +03:00
lint
This commit is contained in:
parent
551d3ebda0
commit
be523b3edc
1 changed files with 3 additions and 5 deletions
|
@ -160,16 +160,14 @@ export default class extends React.Component {
|
|||
return this.state.decryptedThumbnailUrl;
|
||||
}
|
||||
return this.state.decryptedUrl;
|
||||
}
|
||||
else if (content.info.mimetype == "image/svg+xml" && content.info.thumbnail_url) {
|
||||
} else if (content.info.mimetype == "image/svg+xml" && content.info.thumbnail_url) {
|
||||
// special case to return client-generated thumbnails for SVGs, if any,
|
||||
// given we deliberately don't thumbnail them serverside to prevent
|
||||
// billion lol attacks and similar
|
||||
return this.context.matrixClient.mxcUrlToHttp(
|
||||
content.info.thumbnail_url, 800, 600
|
||||
content.info.thumbnail_url, 800, 600,
|
||||
);
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
return this.context.matrixClient.mxcUrlToHttp(content.url, 800, 600);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue