Compare commits

..

No commits in common. "94007dc7da29aaf217b89009f7fbd28dd221656e" and "77948e93b67c99587c3eb5c0a4e1861e26a3e554" have entirely different histories.

View File

@ -13,9 +13,6 @@ 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);
}); });