mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-18 21:35:27 -04:00
Fixed: Ensure max sized posters aren't returned for some devices
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user