Skip to content

Commit

Permalink
sources: fix Philomena not showing up in tag loader (issue #2788)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bionus committed Mar 2, 2023
1 parent e1e02e6 commit 7f0e06e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/sites/Philomena/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,7 @@ export const source: ISource = {
};
},
},
tagTypes: false,
tags: {
url: (query: ITagsQuery, opts: IUrlOptions): string => {
return "/api/v1/json/search/tags?per_page=" + opts.limit + "&page=" + query.page + "&q=*";
Expand Down Expand Up @@ -222,6 +223,7 @@ export const source: ISource = {
};
},
},
tagTypes: false,
tags: {
url: (query: ITagsQuery): string => {
return "/tags?page=" + query.page;
Expand Down

0 comments on commit 7f0e06e

Please sign in to comment.