diff --git a/pages/manage/index.vue b/pages/manage/index.vue index cccf236..cafafc7 100644 --- a/pages/manage/index.vue +++ b/pages/manage/index.vue @@ -349,7 +349,10 @@ function copySongInfo() { useCopy(songInfo.value).then( () => $toast.success('倍刢成功'), ).catch((e) => { - $toast.error(e); + if (e.message) + $toast.error(e.message); + else + $toast.error(e.toString()); toggleSongInfoOpen(); }); }