Make Detail prop on FFMpegDownloaderException a readonly field

This commit is contained in:
Malte Rosenbjerg 2025-10-17 15:22:35 +02:00
parent abf2ab5ee7
commit 8b8701ef44

View file

@ -5,7 +5,7 @@
/// </summary>
public class FFMpegDownloaderException : Exception
{
public string Detail { get; set; } = "";
public readonly string Detail = "";
public FFMpegDownloaderException(string message) : base(message)
{