Partial .net9 upgrade

This commit is contained in:
ahjephson
2025-02-04 13:58:24 +00:00
parent 6ca1c6edd4
commit 938702a7b3
37 changed files with 57 additions and 48 deletions

View File

@@ -63,7 +63,7 @@ namespace Lantean.QBTMud.Components
public QBitTorrentClient.Models.Preferences? Preferences { get; set; }
[Parameter]
public MudDialogInstance? MudDialog { get; set; }
public IMudDialogInstance? MudDialog { get; set; }
[Parameter]
public UIAction? ParentAction { get; set; }
@@ -441,7 +441,7 @@ namespace Lantean.QBTMud.Components
thereAreFirstLastPiecePrio = true;
}
if (torrent.Progress != 1.0) // not downloaded
if (torrent.Progress > 0.999999) // not downloaded
{
allAreDownloaded = false;
}