]> git.mxchange.org Git - friendica-addons.git/commitdiff
Fix missing Cache namespace
authornupplaPhil <admin@philipp.info>
Sun, 19 Jan 2020 15:35:10 +0000 (16:35 +0100)
committernupplaPhil <admin@philipp.info>
Sun, 19 Jan 2020 15:35:10 +0000 (16:35 +0100)
curweather/curweather.php

index 2df31b0b4da16b89455fed9fa4d3d4a669a887c1..d3e002ddd1c10b264e5067ac5bd15f51710b7a3d 100644 (file)
@@ -10,6 +10,7 @@
  */
 
 use Friendica\App;
+use Friendica\Core\Cache\Duration;
 use Friendica\Core\Config;
 use Friendica\Core\Hook;
 use Friendica\Core\Renderer;
@@ -36,7 +37,7 @@ function curweather_uninstall()
 function getWeather($loc, $units = 'metric', $lang = 'en', $appid = '', $cachetime = 0)
 {
        $url = "http://api.openweathermap.org/data/2.5/weather?q=" . $loc . "&appid=" . $appid . "&lang=" . $lang . "&units=" . $units . "&mode=xml";
-       $cached = Cache::get('curweather'.md5($url));
+       $cached = DI::cache()->get('curweather'.md5($url));
        $now = new DateTime();
 
        if (!is_null($cached)) {
@@ -90,7 +91,7 @@ function getWeather($loc, $units = 'metric', $lang = 'en', $appid = '', $cacheti
        ];
 
        DI::pConfig()->set(local_user(), 'curweather', 'last', $now->getTimestamp());
-       Cache::set('curweather'.md5($url), serialize($r), Cache::HOUR);
+       DI::cache()->set('curweather'.md5($url), serialize($r), Duration::HOUR);
 
        return $r;
 }