style: fix spacing

This commit is contained in:
Aireil 2023-03-18 16:36:14 +01:00
parent 14d5d28cde
commit 38a6630715
No known key found for this signature in database
GPG key ID: EA9CA38B48706D3D

View file

@ -56,9 +56,9 @@ internal class DalamudChangelogManager
continue; continue;
var pluginChangelogs = await client.GetFromJsonAsync<PluginHistory>(string.Format( var pluginChangelogs = await client.GetFromJsonAsync<PluginHistory>(string.Format(
PluginChangelogUrl, PluginChangelogUrl,
plugin.Manifest.InternalName, plugin.Manifest.InternalName,
plugin.Manifest.Dip17Channel)); plugin.Manifest.Dip17Channel));
changelogs = changelogs.Concat(pluginChangelogs.Versions changelogs = changelogs.Concat(pluginChangelogs.Versions
.Where(x => x.Dip17Track == plugin.Manifest.Dip17Channel) .Where(x => x.Dip17Track == plugin.Manifest.Dip17Channel)
@ -71,8 +71,6 @@ internal class DalamudChangelogManager
changelogs = changelogs.Append(new PluginChangelogEntry(plugin)); changelogs = changelogs.Append(new PluginChangelogEntry(plugin));
} }
} }
this.Changelogs = changelogs.OrderByDescending(x => x.Date).ToList(); this.Changelogs = changelogs.OrderByDescending(x => x.Date).ToList();