From 62c5042ecc5eb802720f94cae5c1b72242e15230 Mon Sep 17 00:00:00 2001 From: advplyr Date: Sun, 22 May 2022 17:49:10 -0500 Subject: [PATCH] Fix:Cover image stretch to fill --- components/covers/BookCover.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/covers/BookCover.vue b/components/covers/BookCover.vue index 8b530040..2b46ed5d 100644 --- a/components/covers/BookCover.vue +++ b/components/covers/BookCover.vue @@ -5,7 +5,7 @@
- +

{{ title }}

@@ -121,7 +121,7 @@ export default { return this.media.coverPath || this.placeholderUrl }, hasCover() { - return !!this.media.coverPath || this.localCover || this.downloadCover + return (!!this.media.coverPath && !this.isLocal) || this.localCover || this.downloadCover }, sizeMultiplier() { var baseSize = this.squareAspectRatio ? 128 : 96