Skip to content

Commit

Permalink
修正从 Bilisound Web 版本导出的播放队列被当作线上歌单的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
tcdw committed Jan 5, 2025
1 parent f3ad5e3 commit 1c288e0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@

## [Unreleased]

## [1.8.4] - 2025-01-05

### 修正内容

- 修正从 Bilisound Web 版本导出的播放队列被当作线上歌单的问题

## [1.8.3] - 2024-12-03

### 修正内容
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "bilisound-client-mobile",
"main": "expo-router/entry",
"version": "1.8.3",
"version": "1.8.4",
"scripts": {
"start": "cross-env DARK_MODE=media expo start -c --dev-client",
"android": "cross-env DARK_MODE=media expo run:android",
Expand Down
6 changes: 3 additions & 3 deletions utils/qrcode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ export async function handleQrCode(input: string) {
return "这个二维码已经过期了,重新获取一下吧。";
}
useApplyPlaylistStore.getState().setPlaylistDetail(transferList.data);
useApplyPlaylistStore
.getState()
.setName(`从 PC 端导入的播放队列 (${new Date().toLocaleString("zh-Hans-CN")})`);
const state = useApplyPlaylistStore.getState();
state.setName(`从 PC 端导入的播放队列 (${new Date().toLocaleString("zh-Hans-CN")})`);
state.setSource(undefined);
router.replace(`/apply-playlist`);
return "";
}
Expand Down

0 comments on commit 1c288e0

Please sign in to comment.