CleanUp Cache namespace #944

Merged
nupplaphil merged 2 commits from task/cleanup_cache into develop 2020-01-18 15:09:58 +01:00
Showing only changes of commit fbc10c177f - Show all commits

View file

@ -9,8 +9,8 @@
*
*/
use Friendica\Core\Cache\Duration;
use Friendica\DI;
use Friendica\Core\Cache\Cache;
use Friendica\Core\Config;
use Friendica\Core\Hook;
use Friendica\Core\L10n;
@ -137,7 +137,7 @@ function openstreetmap_get_coordinates($a, &$b)
$curlResult = Network::curl($nomserver . $args);
if ($curlResult->isSuccess()) {
$j = json_decode($curlResult->getBody(), true);
DI::cache()->set($cachekey, $j, Cache::MONTH);
DI::cache()->set($cachekey, $j, Duration::MONTH);
}
}