Compare commits

...

1 Commits

Author SHA1 Message Date
lincube
de2ab54732 fix.PLONDS系统逻辑问题修复 2026-06-25 15:25:52 +08:00
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)
{
return new PlondsClientDownloads(
ReleaseTag: "v1.4.0",
GitHub: null,
S3: new PlondsS3Downloads(
Bucket: "bucket",

View File

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