diff --git a/Userland/Libraries/LibWeb/HTML/VideoTrack.cpp b/Userland/Libraries/LibWeb/HTML/VideoTrack.cpp
index 62c31d341b..72dc4b5c72 100644
--- a/Userland/Libraries/LibWeb/HTML/VideoTrack.cpp
+++ b/Userland/Libraries/LibWeb/HTML/VideoTrack.cpp
@@ -68,7 +68,7 @@ RefPtr VideoTrack::next_frame()
while (!decoded_frame) {
auto result = m_decoder.receive_sample(frame_sample.value()->data());
if (result.is_error()) {
- dbgln("VideoTrack: Error receiving video sample data: {}", frame_sample.error().description());
+ dbgln("VideoTrack: Error receiving video sample data: {}", result.error().description());
return {};
}