set empty covers for radios in the db funktion
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-22 14:22:55 +02:00
parent 07cc31ede3
commit 7145a0b1cd

View File

@ -13,6 +13,9 @@ exports.collection = function (callback) {
.toArray((err, result) => {
result.forEach(item => {
item.type = "radio";
if (!item.covers) {
item.covers = {};
}
});
callback(result);
});