Bug fix for browse.

This commit is contained in:
Michael Spalti
2022-09-17 10:18:10 -07:00
parent 41d1f5383f
commit eb48b1b204
13 changed files with 113 additions and 56 deletions

View File

@@ -102,7 +102,7 @@ export class BrowseService {
return href;
})
);
if (options.embedThumbnail) {
if (options.fetchThumbnail ) {
return this.hrefOnlyDataService.findListByHref<BrowseEntry>(href$, {}, null, null, ...BROWSE_LINKS_TO_FOLLOW);
}
return this.hrefOnlyDataService.findListByHref<BrowseEntry>(href$);
@@ -150,7 +150,7 @@ export class BrowseService {
return href;
}),
);
if (options.embedThumbnail) {
if (options.fetchThumbnail) {
return this.hrefOnlyDataService.findListByHref<Item>(href$, {}, null, null, ...BROWSE_LINKS_TO_FOLLOW);
}
return this.hrefOnlyDataService.findListByHref<Item>(href$);