Add some relay display functions

This commit is contained in:
Jon Staab
2024-10-09 16:17:01 -07:00
parent 17282c51dd
commit b8f4b29bb1
5 changed files with 13 additions and 5 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ export class FeedLoader {
this.compiler = new FeedCompiler(options)
}
async getLoader([type, ...feed]: Feed, loadOpts: LoadOpts) {
async getLoader([type, ...feed]: Feed, loadOpts: LoadOpts = {}) {
if (this.compiler.canCompile([type, ...feed] as Feed)) {
return this.getRequestsLoader(await this.compiler.compile([type, ...feed] as Feed), loadOpts)
}