Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/45c221a3b26e26708bf636d8609037f1fea20673 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: Ensure max sized posters aren't returned for some devices

pull/3090/head
Mark McDowall 6 years ago
parent 364f074be1
commit 45c221a3b2

@ -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…
Cancel
Save