change cover structure in radio fix #15
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing

This commit is contained in:
Artem Anufrij
2023-09-21 11:13:47 +02:00
parent 4aea43a8bb
commit 07cc31ede3
2 changed files with 7 additions and 6 deletions

View File

@@ -23,6 +23,9 @@ exports.byId = function (id, callback) {
.collection("radios")
.findOne({ _id: ObjectId(id) }, (err, result) => {
if (err) throw err;
if (!result.covers) {
result.covers = {};
}
callback(result);
});
};
@@ -63,9 +66,7 @@ exports.update = function (radio, callback) {
$set: {
name: radio.name,
url: radio.url,
cover32: radio.cover32,
cover64: radio.cover64,
cover128: radio.cover128
covers: radio.covers
}
},
{ upsert: false },