diff options
| author | Chris Bessent <lost.dragonist@gmail.com> | 2021-11-26 13:37:28 -0700 |
|---|---|---|
| committer | Chris Bessent <lost.dragonist@gmail.com> | 2021-11-26 13:37:28 -0700 |
| commit | 9f8827e3a5eb1615cf4a62af1ac51035100f20ae (patch) | |
| tree | f78f45c1a2dbabae63151f3f1b5c5d2dbba321f3 /src/directoryrefresher.cpp | |
| parent | d58f773c76fb9e9542f371252932ec04a022f309 (diff) | |
Fix parsing plugins with dots in name
Diffstat (limited to 'src/directoryrefresher.cpp')
| -rw-r--r-- | src/directoryrefresher.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
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);
|
