fix.PLONDS系统逻辑问题修复

This commit is contained in:
lincube
2026-06-25 15:25:52 +08:00
parent 6ef96168c1
commit de2ab54732
2 changed files with 2 additions and 0 deletions

View File

@@ -507,6 +507,7 @@ public sealed class PlondsClientServiceTests : IDisposable
private static PlondsClientDownloads CreateDownloads(string? changedUrl, string? filesUrl) private static PlondsClientDownloads CreateDownloads(string? changedUrl, string? filesUrl)
{ {
return new PlondsClientDownloads( return new PlondsClientDownloads(
ReleaseTag: "v1.4.0",
GitHub: null, GitHub: null,
S3: new PlondsS3Downloads( S3: new PlondsS3Downloads(
Bucket: "bucket", Bucket: "bucket",

View File

@@ -1,6 +1,7 @@
namespace LanMountainDesktop.Services.Plonds; namespace LanMountainDesktop.Services.Plonds;
internal sealed record PlondsClientDownloads( internal sealed record PlondsClientDownloads(
string? ReleaseTag,
PlondsGitHubDownloads? GitHub, PlondsGitHubDownloads? GitHub,
PlondsS3Downloads? S3); PlondsS3Downloads? S3);