fix(servertools): Fix compression stream creation returns, handler proxy buffer conversion, and sitemap URL concatenation

This commit is contained in:
2025-03-16 11:53:57 +00:00
parent b3726cb518
commit 85ca50fc8b
5 changed files with 21 additions and 9 deletions

View File

@@ -63,6 +63,6 @@ export class Sitemap {
* adds urls to the current set of urls
*/
public addUrls(urlsArg: IUrlInfo[]) {
this.urls = this.urls.concat(this.urls, urlsArg);
this.urls = this.urls.concat(urlsArg);
}
}
}