From 9f8827e3a5eb1615cf4a62af1ac51035100f20ae Mon Sep 17 00:00:00 2001 From: Chris Bessent Date: Fri, 26 Nov 2021 13:37:28 -0700 Subject: Fix parsing plugins with dots in name --- src/directoryrefresher.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/directoryrefresher.cpp') diff --git a/src/directoryrefresher.cpp b/src/directoryrefresher.cpp index 063cd328..9bbef3f2 100644 --- a/src/directoryrefresher.cpp +++ b/src/directoryrefresher.cpp @@ -265,6 +265,11 @@ void DirectoryRefresher::stealModFilesIntoStructure( for (const QString &filename : stealFiles) { if (filename.isEmpty()) { log::warn("Trying to find file with no name"); + log::warn(" . modName: {}", modName); + log::warn(" . directory: {}", directory); + log::warn(" . priority: {}", priority); + for (int i = 0; i < stealFiles.length(); ++i) + log::warn(" . stealFiles[{}]: {}", i, stealFiles[i]); continue; } QFileInfo fileInfo(filename); -- cgit v1.3.1