From e2bfed87919724d8b001f9b3f38f03da6450a8b7 Mon Sep 17 00:00:00 2001 From: Jason Dove <1695733+jasongdove@users.noreply.github.com> Date: Fri, 31 Jul 2026 17:00:26 -0500 Subject: [PATCH] feat: show next and ffmpeg versions in troubleshooting results --- .../Commands/StartTroubleshootingPlaybackHandler.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ErsatzTV.Application/Troubleshooting/Commands/StartTroubleshootingPlaybackHandler.cs b/ErsatzTV.Application/Troubleshooting/Commands/StartTroubleshootingPlaybackHandler.cs index 2b1608623..77e0c1a2a 100644 --- a/ErsatzTV.Application/Troubleshooting/Commands/StartTroubleshootingPlaybackHandler.cs +++ b/ErsatzTV.Application/Troubleshooting/Commands/StartTroubleshootingPlaybackHandler.cs @@ -59,6 +59,8 @@ public class StartTroubleshootingPlaybackHandler( new { request.TroubleshootingInfo.Version, + request.TroubleshootingInfo.NextVersion, + request.TroubleshootingInfo.FFmpegVersion, Environment = request.TroubleshootingInfo.Environment.OrderBy(x => x.Key) .ToDictionary(x => x.Key, x => x.Value), request.TroubleshootingInfo.Health,