style: Fix missing closing tag in Sitemap.ts
All checks were successful
Update Memento Dev on VPS / deploy (push) Successful in 3m13s

This commit is contained in:
Gauthier Daniels 2025-04-18 21:06:58 +02:00
parent feba4b1508
commit 2e7c4fff6e

View File

@ -46,7 +46,7 @@ class Sitemap {
private prependSitemap(): void {
this.sitemap = `<?xml version="1.0" encoding="UTF-8"?>`;
this.sitemap += `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"`;
this.sitemap += `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">`;
}
private appendSitemap(): void {