diff --git a/README.md b/README.md
index cb52daa..c3b2f75 100644
--- a/README.md
+++ b/README.md
@@ -10,7 +10,7 @@
-[
](https://monochrome.samidy.com/#album/413189044)
+[
](https://monochrome.samidy.com/#album/413189044)
### Features
diff --git a/js/events.js b/js/events.js
index 3feef7e..71c3950 100644
--- a/js/events.js
+++ b/js/events.js
@@ -574,6 +574,11 @@ export async function handleTrackAction(
}
}
tracks = playlist ? playlist.tracks : item.tracks || [];
+ if (playlist) item.name = playlist.name;
+ } else if (type === 'mix') {
+ const data = await api.getMix(item.id);
+ tracks = data.tracks;
+ if (data.mix) item.title = data.mix.title;
}
if (tracks.length > 0) {