1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-08 21:42:24 +03:00

width and height must be int otherwise synapse cries

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski
2017-06-13 12:18:48 +01:00
parent cb38ebed39
commit ad7c835471

View File

@@ -62,8 +62,8 @@ module.exports = React.createClass({
var url = ContentRepo.getHttpUriForMxc( var url = ContentRepo.getHttpUriForMxc(
MatrixClientPeg.get().getHomeserverUrl(), MatrixClientPeg.get().getHomeserverUrl(),
ev.getContent().url, ev.getContent().url,
14 * window.devicePixelRatio, Math.ceil(14 * window.devicePixelRatio),
14 * window.devicePixelRatio, Math.ceil(14 * window.devicePixelRatio),
'crop' 'crop'
); );