diff --git a/maloja/web/static/less/grisons.less b/maloja/web/static/less/grisons.less index 1ed0314..13d75ba 100644 --- a/maloja/web/static/less/grisons.less +++ b/maloja/web/static/less/grisons.less @@ -38,7 +38,7 @@ table.top_info td.image div { margin-right:20px; margin-bottom:20px; background-size:cover; - background-position:top; + background-position:top center; height:174px; width:174px } diff --git a/scrobblers/chromium/manifest.json b/scrobblers/chromium/manifest.json index 0ccc4b1..16a5ba1 100644 --- a/scrobblers/chromium/manifest.json +++ b/scrobblers/chromium/manifest.json @@ -1,6 +1,6 @@ { "name": "Maloja Scrobbler", - "version": "1.5", + "version": "1.6", "description": "Scrobbles tracks from various sites to your Maloja server", "manifest_version": 2, "permissions": ["activeTab", diff --git a/scrobblers/chromium/settings.js b/scrobblers/chromium/settings.js index 76d6706..fbbceed 100644 --- a/scrobblers/chromium/settings.js +++ b/scrobblers/chromium/settings.js @@ -91,7 +91,7 @@ function checkServer() { function createCheckmarks() { if (this.readyState == 4) { - if ((this.status == 204) || (this.status == 205)) { + if ((this.status >= 200) && (this.status < 300)) { //document.getElementById("checkmark_url").innerHTML = "✔️" //document.getElementById("checkmark_key").innerHTML = "✔️" document.getElementById("serverurl").style.backgroundColor = "lawngreen"