From f2130ad734838a9b87e78a3ca372bba5b5c5d126 Mon Sep 17 00:00:00 2001 From: Flaminel Date: Tue, 25 Mar 2025 22:13:45 +0200 Subject: [PATCH] fixed label being init only --- code/Domain/Models/Deluge/Response/TorrentStatus.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/Domain/Models/Deluge/Response/TorrentStatus.cs b/code/Domain/Models/Deluge/Response/TorrentStatus.cs index b33dd8f..a94c47a 100644 --- a/code/Domain/Models/Deluge/Response/TorrentStatus.cs +++ b/code/Domain/Models/Deluge/Response/TorrentStatus.cs @@ -17,7 +17,7 @@ public sealed record TorrentStatus [JsonProperty("total_done")] public long TotalDone { get; init; } - public string? Label { get; init; } + public string? Label { get; set; } [JsonProperty("seeding_time")] public long SeedingTime { get; init; }