diff --git a/client/components/covers/AuthorImage.vue b/client/components/covers/AuthorImage.vue index b4fb3cca..0073a958 100644 --- a/client/components/covers/AuthorImage.vue +++ b/client/components/covers/AuthorImage.vue @@ -72,8 +72,7 @@ export default { if (this.$refs.img) { var { naturalWidth, naturalHeight } = this.$refs.img var imgAr = naturalHeight / naturalWidth - var arDiff = Math.abs(imgAr - aspectRatio) - if (arDiff > 0.15) { + if (imgAr < 0.5 || imgAr > 2) { this.showCoverBg = true } else { this.showCoverBg = false