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,
Seeding,
Completed,
Paused,
Stopped,
Active,
Inactive,

View File

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