From 613d40a60505f04da5d4d1e2b2db2aa41ec104e8 Mon Sep 17 00:00:00 2001 From: Casey Link Date: Fri, 13 Apr 2012 15:10:34 -0500 Subject: [PATCH] Store the correct lifetime for cache data. --- src/libtomahawk/utils/tomahawkcache.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libtomahawk/utils/tomahawkcache.cpp b/src/libtomahawk/utils/tomahawkcache.cpp index ac4dc06b5..d56b8de99 100644 --- a/src/libtomahawk/utils/tomahawkcache.cpp +++ b/src/libtomahawk/utils/tomahawkcache.cpp @@ -108,7 +108,7 @@ void Cache::putData ( const QString& identifier, qint64 maxAge, const QString& k const QString cacheDir = m_cacheBaseDir + identifier; addClient ( identifier ); QSettings cached_settings ( cacheDir, QSettings::IniFormat ); - cached_settings.setValue ( key, QVariant::fromValue ( CacheData ( maxAge, value ) ) ); + cached_settings.setValue ( key, QVariant::fromValue ( CacheData ( QDateTime::currentMSecsSinceEpoch() + maxAge, value ) ) ); } void Cache::addClient ( const QString& identifier )