const PlayList = require('../models/playlist.model'); const repeatedSongs = async(req,res,next) => { try{ const playlist = await PlayList.findById(req.params.id); console.log(playlist); if(!playlist.songs == undefined) return next(); for(let i=0;i