fix: update filter path for posts and increment version to 2.7

This commit is contained in:
Himanshu
2026-04-30 20:11:34 +05:30
parent 620af7f752
commit 4a17b4fc9e
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -39,7 +39,7 @@ export const getPosts = async ({
console.log("vegaGetPosts baseUrl:", providerValue, baseUrl);
const url = filter
? `${baseUrl}/genre/${filter}/page/${page}/`
? `${baseUrl}/${filter}/page/${page}/`
: `${baseUrl}/page/${page}/`;
console.log("vegaGetPosts url:", url);
return posts(baseUrl, url, signal, headers, axios, cheerio);