Skip to content

Commit 8d73366

Browse files
committed
[ci skip] add winarm version caching logic similar to the other ones
1 parent 0a252ac commit 8d73366

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Server/Services/GitLab/VersionCache.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ public async Task RefreshAsync()
154154
Windows =
155155
{
156156
X64 = release.Assets.Links.FirstOrDefault(x => x.AssetName.ContainsIgnoreCase("win_x64"))?.Url ?? string.Empty,
157-
Arm64 = string.Empty
157+
Arm64 = release.Assets.Links.FirstOrDefault(x => x.AssetName.ContainsIgnoreCase("win_arm64"))?.Url ?? string.Empty
158158
},
159159
Linux =
160160
{

0 commit comments

Comments
 (0)