diff --git a/client/src/app/torrent-table/torrent-table.component.html b/client/src/app/torrent-table/torrent-table.component.html
index fc8796b..262854a 100644
--- a/client/src/app/torrent-table/torrent-table.component.html
+++ b/client/src/app/torrent-table/torrent-table.component.html
@@ -3,6 +3,15 @@
Please refresh the screen after fixing this error.
+
+
-
-
diff --git a/server/RdtClient.Data/Data/TorrentData.cs b/server/RdtClient.Data/Data/TorrentData.cs
index 0943b00..0b26378 100644
--- a/server/RdtClient.Data/Data/TorrentData.cs
+++ b/server/RdtClient.Data/Data/TorrentData.cs
@@ -27,7 +27,7 @@ public class TorrentData
.Include(m => m.Downloads)
.ToListAsync();
- return _torrentCache.OrderBy(m => m.Priority ?? 9999).ThenBy(m => m.Added).ToList();
+ return _torrentCache.OrderBy(m => m.Priority ?? 9999).ThenByDescending(m => m.Added).ToList();
}
finally
{