PythonistaGuild / Wavelink

A powerful Lavalink library for Discord.py.
https://wavelink.dev
MIT License
389 stars 179 forks source link

Fix Player.set_filter seeking #211

Closed andrewyazura closed 1 year ago

andrewyazura commented 1 year ago

When using Player.set_filter with seek=True, the current track would be skipped immediately because an invalid position was passed to Player.seek.

self.position is already in milliseconds, so there is no need to multiply it by 1000

EvieePy commented 1 year ago

Thanks 👍