diff --git a/openbr/core/core.cpp b/openbr/core/core.cpp index 45f6d41..795bffc 100644 --- a/openbr/core/core.cpp +++ b/openbr/core/core.cpp @@ -242,7 +242,7 @@ struct AlgorithmCore void retrieveOrEnroll(const File &file, QScopedPointer &gallery, FileList &galleryFiles) { - if (!file.getBool("enroll") && (QStringList() << "gal" << "mem" << "template").contains(file.suffix())) { + if (!file.getBool("enroll") && (QStringList() << "gal" << "mem" << "template" << "ut").contains(file.suffix())) { // Retrieve it gallery.reset(Gallery::make(file)); galleryFiles = gallery->files();