mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 19:56:47 +03:00
Merge pull request #355 from matrix-org/dbkr/fix_massive_video
Fix enourmous video bug
This commit is contained in:
commit
3efd805243
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ module.exports = React.createClass({
|
|||
}
|
||||
if (fullWidth < thumbWidth && fullHeight < thumbHeight) {
|
||||
// no scaling needs to be applied
|
||||
return fullHeight;
|
||||
return 1;
|
||||
}
|
||||
var widthMulti = thumbWidth / fullWidth;
|
||||
var heightMulti = thumbHeight / fullHeight;
|
||||
|
|
Loading…
Reference in a new issue