Skip to content

Commit

Permalink
[contacts] Fix wrong function call in avatar clean-up. JB#53639
Browse files Browse the repository at this point in the history
  • Loading branch information
blammit committed Mar 24, 2021
1 parent fcdf13c commit 2acb0b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/contacts-tool/main.cpp
Expand Up @@ -811,7 +811,7 @@ QString localFilePathWithoutScheme(const QString &filePath)
QString path;
QUrl url(filePath);
if (url.isLocalFile()) {
path = url.isLocalFile();
path = url.toLocalFile();
} else {
path = filePath;
}
Expand Down

0 comments on commit 2acb0b1

Please sign in to comment.