Removed paused state.

This commit is contained in:
ahjephson
2025-10-22 08:29:43 +01:00
parent 0db0ad4374
commit 5b4fbde7b2
2 changed files with 1 additions and 4 deletions

View File

@@ -6,7 +6,6 @@
Downloading, Downloading,
Seeding, Seeding,
Completed, Completed,
Paused,
Stopped, Stopped,
Active, Active,
Inactive, Inactive,

View File

@@ -352,9 +352,7 @@ namespace Lantean.QBTMud.Services
return _statusArray; return _statusArray;
} }
_statusArray = Enum.GetValues<Status>() _statusArray = Enum.GetValues<Status>();
.Where(s => s != Status.Paused)
.ToArray();
return _statusArray; return _statusArray;
} }