mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-05 04:53:01 +00:00
fix seek
This commit is contained in:
+1
-2
@@ -121,8 +121,7 @@ export default defineStore("Queue", {
|
|||||||
},
|
},
|
||||||
seek(pos: number) {
|
seek(pos: number) {
|
||||||
try {
|
try {
|
||||||
const a = (pos / 100) * this.audio.duration;
|
this.audio.currentTime = pos;
|
||||||
this.audio.currentTime = a;
|
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
if (error instanceof TypeError) {
|
if (error instanceof TypeError) {
|
||||||
console.error("Seek error: no audio");
|
console.error("Seek error: no audio");
|
||||||
|
|||||||
Reference in New Issue
Block a user