فهرست منبع

fix: fixed small addSongToPlaylist action issue

Kristian Vos 3 سال پیش
والد
کامیت
645ee67833
1فایلهای تغییر یافته به همراه14 افزوده شده و 12 حذف شده
  1. 14 12
      backend/logic/actions/playlists.js

+ 14 - 12
backend/logic/actions/playlists.js

@@ -1089,25 +1089,27 @@ export default {
 							if (!playlist || playlist.createdBy !== session.userId) {
 								DBModule.runJob("GET_MODEL", { modelName: "user" }, this).then(userModel => {
 									userModel.findOne({ _id: session.userId }, (err, user) => {
-										if (user && user.role === "admin") return next();
+										if (user && user.role === "admin") return next(null, playlist);
 										return next("Something went wrong when trying to get the playlist");
 									});
 								});
-							}
-
-							return async.each(
-								playlist.songs,
-								(song, nextSong) => {
-									if (song.youtubeId === youtubeId)
-										return next("That song is already in the playlist");
-									return nextSong();
-								},
-								err => next(err, playlist)
-							);
+							} else next(null, playlist);
 						})
 						.catch(next);
 				},
 
+				(playlist, next) => {
+					async.each(
+						playlist.songs,
+						(song, nextSong) => {
+							if (song.youtubeId === youtubeId)
+								return next("That song is already in the playlist");
+							return nextSong();
+						},
+						err => next(err, playlist)
+					);
+				},
+
 				(playlist, next) => {
 					if (playlist.type === "user-liked" || playlist.type === "user-disliked") {
 						const oppositeType = playlist.type === "user-liked" ? "user-disliked" : "user-liked";