diff --git a/src/Tgstation.Server.Host/Components/Engine/ByondInstallerBase.cs b/src/Tgstation.Server.Host/Components/Engine/ByondInstallerBase.cs
index 082eeaf349..7aef964b9c 100644
--- a/src/Tgstation.Server.Host/Components/Engine/ByondInstallerBase.cs
+++ b/src/Tgstation.Server.Host/Components/Engine/ByondInstallerBase.cs
@@ -200,7 +200,7 @@ namespace Tgstation.Server.Host.Components.Engine
{
CheckVersionValidity(version);
- var url = await GetDownloadZipUrl(version, cancellationToken);
+ var url = GetDownloadZipUrl(version);
Logger.LogTrace("Downloading {engineType} version {version} from {url}...", TargetEngineType, version, url);
await using var download = fileDownloader.DownloadFile(url, null);
@@ -233,13 +233,12 @@ namespace Tgstation.Server.Host.Components.Engine
/// Create a pointing to the location of the download for a given .
///
/// The to create a for.
- /// The for the operation.
- /// A resulting in a new pointing to the version download location.
- ValueTask GetDownloadZipUrl(EngineVersion version, CancellationToken cancellationToken)
+ /// A pointing to the version download location.
+ Uri GetDownloadZipUrl(EngineVersion version)
{
CheckVersionValidity(version);
var url = String.Format(CultureInfo.InvariantCulture, ByondRevisionsUrlTemplate, version.Version.Major, version.Version.Minor);
- return ValueTask.FromResult(new Uri(url));
+ return new Uri(url);
}
}
}