diff --git a/js/views/attachment_view.js b/js/views/attachment_view.js index 769bacf3cd..ffca0b147c 100644 --- a/js/views/attachment_view.js +++ b/js/views/attachment_view.js @@ -215,7 +215,8 @@ }); } - const {blob, contentType} = this; + const {blob} = this; + const {contentType} = this.model; this.view = new View(this.objectUrl, {blob, contentType}); this.view.$el.appendTo(this.$el); this.listenTo(this.view, 'update', this.update);