Skip to content

Commit

Permalink
NOISSUE fix build on linux?
Browse files Browse the repository at this point in the history
  • Loading branch information
peterix committed Aug 1, 2018
1 parent 5f2d3f0 commit a279df8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion api/logic/modplatform/ftb/FtbPrivatePackManager.cpp
Expand Up @@ -26,7 +26,8 @@ void FtbPrivatePackManager::save() const
}
try
{
FS::write(m_filename, currentPacks.toList().join('\n').toUtf8());
QStringList list = currentPacks.toList();
FS::write(m_filename, list.join('\n').toUtf8());
dirty = false;
}
catch(...)
Expand Down

0 comments on commit a279df8

Please sign in to comment.