diff options
| -rw-r--r-- | api/plugin-support.hpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/api/plugin-support.hpp b/api/plugin-support.hpp index c2368047..02032b54 100644 --- a/api/plugin-support.hpp +++ b/api/plugin-support.hpp @@ -101,7 +101,7 @@ struct dylib final          {              for (const QString& filename : module_directory.entryList({ filter.glob }, QDir::Files, QDir::Name))              { -                std::shared_ptr<dylib> lib = std::make_shared<dylib>(QStringLiteral("%1/%2").arg(library_path).arg(filename), filter.type); +                auto lib = std::make_shared<dylib>(QStringLiteral("%1/%2").arg(library_path, filename), filter.type);                  if (lib->type == Invalid)                      continue; | 
