mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
Add all the missing .path() calls
This commit is contained in:
parent
ef70112386
commit
d4bdcc7da2
1 changed files with 2 additions and 2 deletions
|
@ -87,7 +87,7 @@ bool PluginController::tryLoadFromDir(const QDir &pluginDir)
|
|||
if (!infojson.exists())
|
||||
{
|
||||
qCDebug(chatterinoLua)
|
||||
<< "Missing info.json in plugin directory" << pluginDir;
|
||||
<< "Missing info.json in plugin directory" << pluginDir.path();
|
||||
return false;
|
||||
}
|
||||
QFile infoFile(infojson.absoluteFilePath());
|
||||
|
@ -97,7 +97,7 @@ bool PluginController::tryLoadFromDir(const QDir &pluginDir)
|
|||
if (!doc.isObject())
|
||||
{
|
||||
qCDebug(chatterinoLua)
|
||||
<< "info.json root is not an object" << pluginDir;
|
||||
<< "info.json root is not an object" << pluginDir.path();
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue