chore(mpris): use override keyword

This commit is contained in:
JellyBrick
2024-02-18 10:34:29 +09:00
parent 8457115105
commit 2c130ce80d

View File

@ -29,7 +29,7 @@ class YTPlayer extends MprisPlayer {
this.currentPosition = t; this.currentPosition = t;
} }
getPosition(): number { override getPosition(): number {
return this.currentPosition; return this.currentPosition;
} }