plugin/cim: fix cache dir

This commit is contained in:
2 * r + 2 * t 2025-08-27 21:59:28 +10:00
parent 4f60c07e05
commit f8fa70fe0e

View file

@ -50,6 +50,9 @@ void CachingImageManager::setCacheDir(const QUrl& cacheDir) {
}
m_cacheDir = cacheDir;
if (!m_cacheDir.path().endsWith("/")) {
m_cacheDir.setPath(m_cacheDir.path() + "/");
}
emit cacheDirChanged();
}