From 122854574eb10497d01e1b98f2c5ee09fbceb086 Mon Sep 17 00:00:00 2001 From: Daniele Alessandra Date: Wed, 24 Apr 2024 10:18:40 +0200 Subject: [PATCH 1/2] Hotfix --- includes/class-freemius.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/class-freemius.php b/includes/class-freemius.php index eb3941aa..20b178be 100755 --- a/includes/class-freemius.php +++ b/includes/class-freemius.php @@ -21349,7 +21349,7 @@ private function _sync_plugin_license( * associated with that ID is not included in the user's licenses collection. * Save previous value to manage remote license renewals. */ - $was_license_expired_before_sync = $this->_license->is_expired(); + $was_license_expired_before_sync = is_object( $this->_license ) && $this->_license->is_expired(); $this->_sync_licenses( $site->license_id, ( $is_context_single_site ? From 50108d86751f233661cfa9c427d05f44e0124940 Mon Sep 17 00:00:00 2001 From: Daniele Alessandra Date: Wed, 24 Apr 2024 10:23:02 +0200 Subject: [PATCH 2/2] [version] Version 2.7.2 --- start.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start.php b/start.php index dab0c20a..dbe49e98 100644 --- a/start.php +++ b/start.php @@ -15,7 +15,7 @@ * * @var string */ - $this_sdk_version = '2.7.1'; + $this_sdk_version = '2.7.2'; #region SDK Selection Logic --------------------------------------------------------------------