From 5d9cde10ce8bdaed1086b537439025865ef1b6da Mon Sep 17 00:00:00 2001 From: stax76 Date: Fri, 3 Jun 2022 21:08:30 +0200 Subject: [PATCH] fix issue using external tracks --- src/Misc/Commands.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Misc/Commands.cs b/src/Misc/Commands.cs index 7e2dedf..318c907 100644 --- a/src/Misc/Commands.cs +++ b/src/Misc/Commands.cs @@ -440,9 +440,12 @@ namespace mpvnet using (MediaInfo mediaInfo = new MediaInfo(path)) text = Regex.Replace(mediaInfo.GetSummary(full, raw), "Unique ID.+", ""); else + { + Core.UpdateExternalTracks(); lock (Core.MediaTracksLock) foreach (MediaTrack track in Core.MediaTracks) text += track.Text + BR; + } text = text.TrimEx();