shared/gui: Don't consider non-content search results for previews

Not entirely ideal, since we may want to search for 'cake', and look at
a preview for 'cake.txt' even if there is no 'cake' inside.

But this will do for now
Tá an tiomantas seo le fáil i:
2022-06-13 22:44:24 +02:00
tuismitheoir 1a39118470
tiomantas 451c79088a
D'athraigh 3 comhad le 8 breiseanna agus 0 scriosta

Féach ar an gComhad

@ -213,6 +213,7 @@ QVector<SearchResult> SqliteSearch::search(const LooqsQuery &query)
throw LooqsGeneralException("SQL Error: " + dbQuery.lastError().text());
}
bool contentSearch = query.hasContentSearch();
while(dbQuery.next())
{
SearchResult result;
@ -229,6 +230,7 @@ QVector<SearchResult> SqliteSearch::search(const LooqsQuery &query)
result.pages.append(page.toUInt());
}
}
result.wasContentSearch = contentSearch;
results.append(result);
}
return results;