fix(music-together): fix queue index

This commit is contained in:
JellyBrick
2025-05-12 03:30:02 +09:00
parent 91a2eb9063
commit d10c6ec8fc
2 changed files with 24 additions and 7 deletions

View File

@ -668,7 +668,7 @@ export default createPlugin<
start({ ipc }) {
this.ipc = ipc;
this.showPrompt = async (title: string, label: string) =>
this.showPrompt = (title: string, label: string) =>
ipc.invoke('music-together:prompt', title, label) as Promise<string>;
this.api = document.querySelector<AppElement>('ytmusic-app');