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();