mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-17 05:55:00 +08:00
lint
This commit is contained in:
parent
551d3ebda0
commit
be523b3edc
@ -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 New Issue
Block a user