1
0
mirror of https://github.com/krateng/maloja.git synced 2023-08-10 21:12:55 +03:00

Updated scrobbler

This commit is contained in:
Krateng 2020-09-01 15:22:57 +02:00
parent f7f1b1225e
commit 7bc70ed0bd
3 changed files with 3 additions and 3 deletions

View File

@ -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
}

View File

@ -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",

View File

@ -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"