Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge branch 'jb53639-avatars' into 'master'
[contacts] Fix wrong function call in avatar clean-up. JB#53639

See merge request mer-core/nemo-qml-plugin-contacts!59
  • Loading branch information
blam committed Mar 24, 2021
2 parents fcdf13c + 2acb0b1 commit cf5ebcc
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 cf5ebcc

Please sign in to comment.