Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Aragas committed Feb 23, 2024
1 parent 6d729db commit 29c72a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/BUTR.CrashReportServer/Controllers/ReportController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ public IActionResult Sitemap(int idx)
{
Url = _dbContext.Set<IdEntity>().Skip(idx * 50000).Take(50000).Select(x => new { x.FileId, x.Created }).Select(x => new Url
{
Location = $"{_options.BaseUri}/{x.FileId}",
Location = $"{_options.BaseUri}/sitemap_{x.FileId}.xml",
TimeStamp = x.Created,
Priority = 0.5,
ChangeFrequency = ChangeFrequency.Never,
Expand Down

0 comments on commit 29c72a8

Please sign in to comment.