Skip to content

Commit

Permalink
filter changelogs to plugin name
Browse files Browse the repository at this point in the history
  • Loading branch information
goaaats committed Jul 2, 2024
1 parent 7298a46 commit 27cc57b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions XLWebServices/Services/PluginData/PluginDataService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,12 @@ public async Task PostProcessD17Masters()
foreach (var plugin in PluginMaster)
{
var versionStable = _dbContext.PluginVersions
.Where(x => x.Plugin.InternalName == plugin.InternalName)
.OrderByDescending(x => x.PublishedAt)
.FirstOrDefault(x => x.Version == plugin.AssemblyVersion &&
x.Dip17Track == Dip17SystemDefine.StableTrack);
var versionTesting = _dbContext.PluginVersions
.Where(x => x.Plugin.InternalName == plugin.InternalName)
.OrderByDescending(x => x.PublishedAt)
.FirstOrDefault(x => x.Version == plugin.TestingAssemblyVersion &&
x.Dip17Track != Dip17SystemDefine.StableTrack);
Expand Down

0 comments on commit 27cc57b

Please sign in to comment.