Skip to content

Commit 8045034

Browse files
committed
🐞 fix: 修复歌曲加入歌单失败问题
1 parent 9f125f8 commit 8045034

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/renderer/api/music.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ export const updatePlaylistTracks = (params: {
139139
pid: number;
140140
tracks: string;
141141
}) => {
142-
return request.get('/playlist/tracks', { params });
142+
return request.post('/playlist/tracks', params);
143143
};
144144

145145
/**

0 commit comments

Comments
 (0)