mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-17 13:48:02 +00:00
fix: bugs
fix: bugs
This commit is contained in:
parent
1444bbefa2
commit
70d1de0e0f
62 changed files with 368 additions and 284 deletions
|
|
@ -1,6 +1,7 @@
|
|||
import { TrackApiNames, fetchLyric } from '@/api/track'
|
||||
import type { FetchLyricParams, FetchLyricResponse } from '@/api/track'
|
||||
import reactQueryClient from '@/utils/reactQueryClient'
|
||||
import { TrackApiNames, fetchLyric } from '@/renderer/api/track'
|
||||
import type { FetchLyricParams, FetchLyricResponse } from '@/renderer/api/track'
|
||||
import reactQueryClient from '@/renderer/utils/reactQueryClient'
|
||||
import { IpcChannels } from '@/main/IpcChannelsName'
|
||||
|
||||
export default function useLyric(params: FetchLyricParams) {
|
||||
return useQuery(
|
||||
|
|
@ -13,7 +14,7 @@ export default function useLyric(params: FetchLyricParams) {
|
|||
refetchInterval: false,
|
||||
staleTime: Infinity,
|
||||
initialData: (): FetchLyricResponse | undefined =>
|
||||
window.ipcRenderer?.sendSync('getApiCacheSync', {
|
||||
window.ipcRenderer?.sendSync(IpcChannels.GetApiCacheSync, {
|
||||
api: 'lyric',
|
||||
query: {
|
||||
id: params.id,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue