mirror of
https://github.com/krateng/maloja.git
synced 2023-08-10 21:12:55 +03:00
Updated scrobbler
This commit is contained in:
parent
f7f1b1225e
commit
7bc70ed0bd
@ -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
|
||||
}
|
||||
|
@ -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",
|
||||
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user