fix report builder formatting

This commit is contained in:
Timothy Baldridge 2019-10-12 21:06:44 -06:00
parent c7f2427d17
commit 3defad9590
2 changed files with 2 additions and 6 deletions

View File

@ -131,7 +131,7 @@ namespace Wabbajack.Downloaders
public override string GetReportEntry(Archive a)
{
return $"* URL - [{a.Name} - {Url}]({Url})";
return $"* [{a.Name} - {Url}]({Url})";
}
}
}

View File

@ -123,11 +123,7 @@ namespace Wabbajack
private IEnumerable<Archive> SortArchives(List<Archive> lstArchives)
{
/*
var lst = lstArchives.OfType<NexusMod>().OrderBy(m => m.Author).ThenBy(m => m.Name);
return lst.Concat(lstArchives.Where(m => !(m is NexusMod)).OrderBy(m => m.Name));
*/
return lstArchives;
return lstArchives.OrderByDescending(a => a.Size);
}
}
}