main #20

Merged
artem merged 16 commits from main into dev 2023-09-27 15:17:17 +02:00
Showing only changes of commit 94007dc7da - Show all commits

View File

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