Clazy fix

This commit is contained in:
Tobias Fella 2020-05-10 23:25:23 +02:00
parent 1e29ab02ab
commit b91171e21f

View File

@ -104,7 +104,7 @@ void Fetcher::fetch(QUrl url)
QString Fetcher::image(QString url)
{
QString path = imagePath(url);
if (QFileInfo(path).exists()) {
if (QFileInfo::exists(path)) {
return path;
}