Missing argument

main
Bob Mottram 2024-08-20 10:30:34 +01:00
parent e200f822d3
commit 1383c90462
1 changed files with 2 additions and 2 deletions

View File

@ -274,7 +274,7 @@ def daemon_http_get(self) -> None:
# which has a long term partnership with OpenAI # which has a long term partnership with OpenAI
if 'oai-host-hash' in self.headers: if 'oai-host-hash' in self.headers:
if is_image_file(self.path): if is_image_file(self.path):
http_404(self) http_404(self, 720)
return return
print('GET HTTP LLM scraper poisoned: ' + str(self.headers)) print('GET HTTP LLM scraper poisoned: ' + str(self.headers))
msg = html_poisoned(self.server.dictionary, msg = html_poisoned(self.server.dictionary,
@ -350,7 +350,7 @@ def daemon_http_get(self) -> None:
if block: if block:
if llm: if llm:
if is_image_file(self.path): if is_image_file(self.path):
http_404(self) http_404(self, 723)
return return
# if this is an LLM crawler then feed it some trash # if this is an LLM crawler then feed it some trash
print('GET HTTP LLM scraper poisoned: ' + str(self.headers)) print('GET HTTP LLM scraper poisoned: ' + str(self.headers))