mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
style: fix spacing
This commit is contained in:
parent
14d5d28cde
commit
38a6630715
1 changed files with 3 additions and 5 deletions
|
|
@ -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();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue