mirror of
https://github.com/Sonarr/Sonarr
synced 2025-02-24 07:01:29 +00:00
Fixed: Ensure max sized posters aren't returned for some devices
This commit is contained in:
parent
364f074be1
commit
45c221a3b2
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ class SeriesImage extends Component {
|
|||
constructor(props, context) {
|
||||
super(props, context);
|
||||
|
||||
const pixelRatio = Math.floor(window.devicePixelRatio);
|
||||
const pixelRatio = Math.max(Math.round(window.devicePixelRatio), 1);
|
||||
|
||||
const {
|
||||
images,
|
||||
|
|
Loading…
Reference in a new issue