Fix JS error from some link previews (#5556)

Этот коммит содержится в:
Joram Wilander
2017-02-28 10:24:16 -05:00
коммит произвёл enahum
родитель 66c5f7a31c
Коммит 0cd34227cc

Просмотреть файл

@@ -81,6 +81,10 @@ export default class PostAttachmentOpenGraph extends React.Component {
}
getBestImageUrl() {
if (this.state.data.images == null) {
return null;
}
const nearestPointData = CommonUtils.getNearestPoint(this.imageDimentions, this.state.data.images, 'width', 'height');
const bestImage = nearestPointData.nearestPoint;