Fix unintentional error message with dynamic media

This commit is contained in:
sfan5 2024-05-14 23:12:49 +02:00
parent 39fd9b93c3
commit 93f4844c9c
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ void FileCache::createDir()
bool FileCache::loadByPath(const std::string &path, std::ostream &os)
{
auto fis = open_ifstream(path.c_str(), true);
auto fis = open_ifstream(path.c_str(), false);
if (!fis.good())
return false;