Merge pull request #3031 from spantaleev/fix-non-integer-thumb-sizes

Do not try to request thumbnails with non-integer widths
This commit is contained in:
Travis Ralston 2019-05-27 08:37:22 -06:00 committed by GitHub
commit 6174cd2998
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -172,8 +172,8 @@ export default class MImageBody extends React.Component {
// thumbnail resolution will be unnecessarily reduced.
// custom timeline widths seems preferable.
const pixelRatio = window.devicePixelRatio;
const thumbWidth = 800 * pixelRatio;
const thumbHeight = 600 * pixelRatio;
const thumbWidth = Math.round(800 * pixelRatio);
const thumbHeight = Math.round(600 * pixelRatio);
const content = this.props.mxEvent.getContent();
if (content.file !== undefined) {