Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 554a1cd

Browse files
committedMar 15, 2025·
fix tag updates
1 parent 0a5fa5d commit 554a1cd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎rubberduckvba.Server/ContentSynchronization/Pipeline/Sections/SyncTags/SyncTagsSection.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,8 @@ protected override async Task ActionAsync(TagSyncRequestParameters input)
112112
var githubTags = await getGithubTags;
113113
var (gitHubMain, gitHubNext, _) = githubTags.GetLatestTags();
114114

115-
var mergedMain = (dbMain ?? gitHubMain with { InstallerDownloads = gitHubMain.InstallerDownloads })!;
116-
var mergedNext = (dbNext ?? gitHubNext with { InstallerDownloads = gitHubNext.InstallerDownloads })!;
115+
var mergedMain = (dbMain ?? gitHubMain) with { InstallerDownloads = gitHubMain.InstallerDownloads };
116+
var mergedNext = (dbNext ?? gitHubNext) with { InstallerDownloads = gitHubNext.InstallerDownloads };
117117

118118
var inserts = new List<TagGraph>();
119119
var updates = new List<TagGraph>();

0 commit comments

Comments
 (0)
Please sign in to comment.