Merge pull request #944 from nupplaphil/task/cleanup_cache

CleanUp Cache namespace
This commit is contained in:
Hypolite Petovan 2020-01-18 09:09:57 -05:00 committed by GitHub
commit 43d2e0c38a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@
*/
use Friendica\DI;
use Friendica\Core\Cache\Cache;
use Friendica\Core\Cache\Duration;
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);
}
}