Clean Code

This commit is contained in:
MasterAcnolo
2025-11-15 23:54:41 +01:00
parent e3845e1849
commit 3e9c545952
3 changed files with 2 additions and 6 deletions

View File

@@ -1,7 +1,5 @@
function parseVideo(data) {
// logger.info(`Avant parse: ${JSON.stringify(data, null, 2)}`);
return {
type: "video",
// id: data.id,
@@ -15,9 +13,7 @@ function parseVideo(data) {
}
function parsePlaylist(data) {
// logger.info(`Avant parse: ${JSON.stringify(data, null, 2)}`);
return {
type: "playlist",
title: data.title || data.id,