LibWeb: Stop returning the value in HTMLMediaElement::set_current_time

This wasn't actually affecting the result in a script assigning a
variable to the result of an expression assigning to currentTime.
This commit is contained in:
Zaggy1024 2025-10-28 22:39:10 -07:00 committed by Tim Ledbetter
parent 14dba82202
commit 418f1575b0
Notes: github-actions[bot] 2025-10-29 06:23:53 +00:00
2 changed files with 2 additions and 3 deletions

View file

@ -95,7 +95,7 @@ public:
WebIDL::ExceptionOr<void> load();
double current_time() const;
double set_current_time(double);
void set_current_time(double);
void fast_seek(double);
double current_playback_position() const { return m_current_playback_position; }