From 734ffc57584a7fcef6855b340d544709cc472859 Mon Sep 17 00:00:00 2001 From: Erica Z Date: Sun, 20 Oct 2024 14:45:37 +0200 Subject: [PATCH] try fix duration fallback --- src/playbin.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/playbin.vala b/src/playbin.vala index fe71d7f..af4603e 100644 --- a/src/playbin.vala +++ b/src/playbin.vala @@ -93,7 +93,7 @@ public class Playbin : GLib.Object { case 1: assert (data.name == "duration"); if (data.format == Mpv.Format.NONE) { - this.duration = 0.0; + // this.duration = 0.0; i think this prevents the fallback below from working } else { this.duration = data.parse_double (); }