removed results loging + added logs for no results returned where missing + improved image fetching

This commit is contained in:
partisan 2024-06-16 00:14:21 +02:00
parent a138928d63
commit 87ac6f05f9
5 changed files with 19 additions and 14 deletions

View file

@ -105,6 +105,7 @@ func fetchTextResults(query, safe, lang string, page int) []TextSearchResult {
results = append(results, result.(TextSearchResult))
}
// If results are found, break out of the loop
if len(results) > 0 {
break
}