We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 511c044 commit 4da7e7cCopy full SHA for 4da7e7c
rubberduckvba.Server/ContentSynchronization/Pipeline/Sections/SyncXmldoc/SyncXmldocSection.cs
@@ -91,8 +91,9 @@ protected override async Task ActionAsync(SyncRequestParameters input)
91
Context.LoadParameters(input);
92
93
var dbMain = await _content.GetLatestTagAsync(RepositoryId.Rubberduck, includePreRelease: false);
94
- var githubTags = await _github.GetAllTagsAsync(dbMain.Name);
+ Context.LoadRubberduckDbMain(dbMain);
95
96
+ var githubTags = await _github.GetAllTagsAsync(dbMain.Name);
97
// LoadInspectionDefaultConfig
98
var config = await _github.GetCodeAnalysisDefaultsConfigAsync();
99
Context.LoadInspectionDefaultConfig(config);
0 commit comments