From b5fd035bad0f34de1c95ddc991cbd246226a2d13 Mon Sep 17 00:00:00 2001 From: Jason Dove <1695733+jasongdove@users.noreply.github.com> Date: Fri, 31 Jul 2026 17:00:59 -0500 Subject: [PATCH] feat: show next and ffmpeg versions in troubleshooting results (#2970) --- .../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,