Skip to content

Commit

Permalink
actually grab changelogs for the plugin we care about, use correct ve…
Browse files Browse the repository at this point in the history
…rsion for testing
  • Loading branch information
goaaats committed Jul 2, 2024
1 parent 5590d60 commit 03d4850
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion XLWebServices/Services/PluginData/PluginDataService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public async Task PostProcessD17Masters()
x.Dip17Track == Dip17SystemDefine.StableTrack);
var versionTesting = _dbContext.PluginVersions
.OrderByDescending(x => x.PublishedAt)
.FirstOrDefault(x => x.Version == plugin.AssemblyVersion &&
.FirstOrDefault(x => x.Version == plugin.TestingAssemblyVersion &&
x.Dip17Track != Dip17SystemDefine.StableTrack);

plugin.Changelog = versionStable?.Changelog;
Expand Down

0 comments on commit 03d4850

Please sign in to comment.