diff options
Diffstat (limited to 'lib/decoder.cpp')
| -rw-r--r-- | lib/decoder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/decoder.cpp b/lib/decoder.cpp index 8b2fac51a..e1223c0c8 100644 --- a/lib/decoder.cpp +++ b/lib/decoder.cpp @@ -217,7 +217,7 @@ DecoderFactory *Decoder::findByContent(QIODevice *input) FileTag *Decoder::createTag(const QString& source) { DecoderFactory *fact = Decoder::findByPath(source); - if (fact) + if (fact && QFile::exists(source)) { return fact->createTag(source); } |
