Commit 2c3a448f authored by Lorenz Meier's avatar Lorenz Meier

Merge pull request #167 from barthess/fix_cache_path

mapscache moved to user`s home directory to prevent polution of root FS
parents 87aa800c 82fcf653
......@@ -41,9 +41,9 @@ namespace core {
void Cache::setCacheLocation(const QString& value)
{
cache=value;
routeCache = cache + "RouteCache" + QDir::separator();
geoCache = cache + "GeocoderCache"+ QDir::separator();
placemarkCache = cache + "PlacemarkCache" + QDir::separator();
routeCache = cache + "RouteCache/";
geoCache = cache + "GeocoderCache/";
placemarkCache = cache + "PlacemarkCache/";
ImageCache.setGtileCache(value);
}
QString Cache::CacheLocation()
......@@ -54,7 +54,7 @@ namespace core {
{
if(cache.isNull()|cache.isEmpty())
{
cache= Utils::PathUtils().GetStoragePath()+"mapscache"+QDir::separator();
cache = QDir::homePath() + "/mapscache/";
setCacheLocation(cache);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment