Merge pull request #943 from MrPetovan/bug/fatal-errors

[openstreetmap] Fix references to Cache
This commit is contained in:
Tobias Diekershoff 2020-01-12 15:40:26 +01:00 committed by GitHub
commit bc62d7ad0f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -10,7 +10,7 @@
*/
use Friendica\DI;
use Friendica\Core\Cache;
use Friendica\Core\Cache\Cache;
use Friendica\Core\Config;
use Friendica\Core\Hook;
use Friendica\Core\L10n;
@ -131,13 +131,13 @@ function openstreetmap_get_coordinates($a, &$b)
$args = '?q=' . urlencode($b['location']) . '&format=json';
$cachekey = "openstreetmap:" . $b['location'];
$j = Cache::get($cachekey);
$j = DI::cache()->get($cachekey);
if (is_null($j)) {
$curlResult = Network::curl($nomserver . $args);
if ($curlResult->isSuccess()) {
$j = json_decode($curlResult->getBody(), true);
Cache::set($cachekey, $j, Cache::MONTH);
DI::cache()->set($cachekey, $j, Cache::MONTH);
}
}