|
@@ -568,12 +568,6 @@ export default {
|
|
|
.catch(() => {});
|
|
|
});
|
|
|
|
|
|
- song.artists.forEach(artist => {
|
|
|
- PlaylistsModule.runJob("AUTOFILL_ARTIST_PLAYLIST", { artist })
|
|
|
- .then(() => {})
|
|
|
- .catch(() => {});
|
|
|
- });
|
|
|
-
|
|
|
SongsModule.runJob("UPDATE_SONG", { songId: song._id, oldStatus });
|
|
|
next(null, song, oldStatus);
|
|
|
}
|
|
@@ -630,12 +624,6 @@ export default {
|
|
|
.catch(() => {});
|
|
|
});
|
|
|
|
|
|
- song.artists.forEach(artist => {
|
|
|
- PlaylistsModule.runJob("AUTOFILL_ARTIST_PLAYLIST", { artist })
|
|
|
- .then(() => {})
|
|
|
- .catch(() => {});
|
|
|
- });
|
|
|
-
|
|
|
SongsModule.runJob("UPDATE_SONG", { songId, oldStatus: "verified" });
|
|
|
|
|
|
next(null);
|