forked from friendica/friendica-addons
Merge pull request #943 from MrPetovan/bug/fatal-errors
[openstreetmap] Fix references to Cache
This commit is contained in:
commit
bc62d7ad0f
|
@ -10,7 +10,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
use Friendica\DI;
|
use Friendica\DI;
|
||||||
use Friendica\Core\Cache;
|
use Friendica\Core\Cache\Cache;
|
||||||
use Friendica\Core\Config;
|
use Friendica\Core\Config;
|
||||||
use Friendica\Core\Hook;
|
use Friendica\Core\Hook;
|
||||||
use Friendica\Core\L10n;
|
use Friendica\Core\L10n;
|
||||||
|
@ -131,13 +131,13 @@ function openstreetmap_get_coordinates($a, &$b)
|
||||||
$args = '?q=' . urlencode($b['location']) . '&format=json';
|
$args = '?q=' . urlencode($b['location']) . '&format=json';
|
||||||
|
|
||||||
$cachekey = "openstreetmap:" . $b['location'];
|
$cachekey = "openstreetmap:" . $b['location'];
|
||||||
$j = Cache::get($cachekey);
|
$j = DI::cache()->get($cachekey);
|
||||||
|
|
||||||
if (is_null($j)) {
|
if (is_null($j)) {
|
||||||
$curlResult = Network::curl($nomserver . $args);
|
$curlResult = Network::curl($nomserver . $args);
|
||||||
if ($curlResult->isSuccess()) {
|
if ($curlResult->isSuccess()) {
|
||||||
$j = json_decode($curlResult->getBody(), true);
|
$j = json_decode($curlResult->getBody(), true);
|
||||||
Cache::set($cachekey, $j, Cache::MONTH);
|
DI::cache()->set($cachekey, $j, Cache::MONTH);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue