From 714a58945e849494b6dd41e0e0b1a8ecf1107619 Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Sun, 9 Aug 2020 10:46:44 +0200 Subject: [PATCH] Fixed access to magic method that no longer exists --- module/CLI/src/Util/GeolocationDbUpdater.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/CLI/src/Util/GeolocationDbUpdater.php b/module/CLI/src/Util/GeolocationDbUpdater.php index b74ebdac..fd40fc15 100644 --- a/module/CLI/src/Util/GeolocationDbUpdater.php +++ b/module/CLI/src/Util/GeolocationDbUpdater.php @@ -52,7 +52,7 @@ class GeolocationDbUpdater implements GeolocationDbUpdaterInterface } $meta = $this->geoLiteDbReader->metadata(); - if ($this->buildIsTooOld($meta->__get('buildEpoch'))) { + if ($this->buildIsTooOld($meta->buildEpoch)) { $this->downloadNewDb(true, $mustBeUpdated, $handleProgress); } }