This commit is contained in:
2026-09-12 06:57:10 +02:00
parent acf29df204
commit 03abac6bef
11 changed files with 178 additions and 30 deletions
+9 -3
View File
@@ -2203,7 +2203,9 @@ const f0cklib = {
xd_label: meta.label,
width: r.width,
height: r.height,
has_coverart: !!r.has_coverart
has_coverart: !!r.has_coverart,
score: 0,
rank_score: 0
};
});
},
@@ -2481,7 +2483,9 @@ const f0cklib = {
width: r.width,
height: r.height,
has_coverart: !!r.has_coverart,
personalized: true
personalized: true,
score: r.rank_score != null ? Math.round(Number(r.rank_score) * 10) / 10 : 0,
rank_score: r.rank_score != null ? Math.round(Number(r.rank_score) * 10) / 10 : 0
};
});
} catch (err) {
@@ -2682,7 +2686,9 @@ const f0cklib = {
xd_label: meta.label,
width: r.width,
height: r.height,
has_coverart: !!r.has_coverart
has_coverart: !!r.has_coverart,
score: r.xd_score || 0,
rank_score: 0
};
});