Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/nodes/ImageView.vue')
-rw-r--r--src/nodes/ImageView.vue6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/nodes/ImageView.vue b/src/nodes/ImageView.vue
index db5409ae5..afacbf5c2 100644
--- a/src/nodes/ImageView.vue
+++ b/src/nodes/ImageView.vue
@@ -167,7 +167,7 @@ export default {
},
computed: {
isMediaAttachment() {
- return this.attachmentType !== 'image'
+ return this.attachmentType === this.$imageResolver.ATTACHMENT_TYPE_MEDIA
},
canDisplayImage() {
if (!this.isSupportedImage) {
@@ -256,8 +256,7 @@ export default {
this.imageLoaded = true
this.loaded = true
this.attachmentType = attachmentType
- console.debug('SUCCESS type', attachmentType)
- if (attachmentType === 'media') {
+ if (attachmentType === this.$imageResolver.ATTACHMENT_TYPE_MEDIA) {
this.loadMediaMetadata(name)
}
resolve(imageUrl)
@@ -270,7 +269,6 @@ export default {
},
loadMediaMetadata(name) {
this.$imageResolver.getMediaMetadata(name).then((response) => {
- console.debug('GOTCHAAAAAA', response.data)
this.attachmentMetadata = response.data
})
},