Added S3 support for media files. Fixed MindGeek scraper for new poster data structure.
This commit is contained in:
@@ -9,8 +9,8 @@
|
||||
>
|
||||
<img
|
||||
v-if="movie.covers[0]"
|
||||
:src="sfw ? `/img/${movie.covers[0].sfw.thumbnail}` : `/media/${movie.covers[0].thumbnail}`"
|
||||
:style="{ 'background-image': sfw ? `/img/${movie.covers[0].sfw.lazy}` : `/media/${movie.covers[0].lazy }` }"
|
||||
:src="getPath(movie.covers[0], 'thumbnail')"
|
||||
:style="{ 'background-image': getBgPath(movie.covers[0], 'lazy') }"
|
||||
loading="lazy"
|
||||
>
|
||||
</router-link>
|
||||
|
||||
Reference in New Issue
Block a user