We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
如题。近期,在使用软件搜索时,搜索会漏掉很多内容。以bunny girl为例,在搜索时,会漏掉语言标签中包含Chinese的内容。
(猜测)在软件进行搜索时,软件直接去获取搜索内容,然后以下面的逻辑进行搜索。
String Search="bunny girl"; String SearchUrl="https://e-hentai.org/?f_search=",Search; return SearchUrl; // 返回https://e-hentai.org/?f_search=bunny+girl
可能是因为主站修改了部分搜索逻辑,在这样执行搜索时,会默认进入过滤模式。 解决方法需要在末尾加上“&f_sft=on&f_sfu=on&f_sfl=on”,这样就不会进入到内容过滤中。
// 过时的搜索网页 https://e-hentai.org/?f_search=bunny+girl // 最新的搜索网页 https://e-hentai.org/?f_search=bunny+girl&f_sft=on&f_sfu=on&f_sfl=on
The text was updated successfully, but these errors were encountered:
No branches or pull requests
如题。近期,在使用软件搜索时,搜索会漏掉很多内容。以bunny girl为例,在搜索时,会漏掉语言标签中包含Chinese的内容。
(猜测)在软件进行搜索时,软件直接去获取搜索内容,然后以下面的逻辑进行搜索。
可能是因为主站修改了部分搜索逻辑,在这样执行搜索时,会默认进入过滤模式。
解决方法需要在末尾加上“&f_sft=on&f_sfu=on&f_sfl=on”,这样就不会进入到内容过滤中。
The text was updated successfully, but these errors were encountered: