Skip to content

Commit

Permalink
Merge pull request #268 from JeyLists/dev
Browse files Browse the repository at this point in the history
Fix Rule34 Video search
  • Loading branch information
OshekharO authored Sep 14, 2024
2 parents 0b2dc63 + b29cbf6 commit 3b7815f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion repo/rule34video.com.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export default class extends Extension {
async search(kw, page) {
// Search
const paddedPage = page.toString().padStart(2, "0");
const url = `/search/${kw}/?mode=async&function=get_block&block_id=custom_list_videos_videos_list_search&q=bitch&sort_by=&from_videos=${paddedPage}&from_albums=${paddedPage}`;
const url = `/search/?mode=async&function=get_block&block_id=custom_list_videos_videos_list_search&q=${kw}&sort_by=&from_videos=${paddedPage}&from_albums=${paddedPage}`;
const res = await this.request(url);
const videoList = await this.querySelectorAll(res, "#custom_list_videos_videos_list_search_items .item.thumb");
const videos = [];
Expand Down

0 comments on commit 3b7815f

Please sign in to comment.