Skip to content

Commit

Permalink
Merge pull request #708 from Freemius/hotfix/bug-707
Browse files Browse the repository at this point in the history
Hotfix: Fatal error on Free version activation
  • Loading branch information
swashata authored Apr 24, 2024
2 parents 2dc1a3b + 50108d8 commit eeac5f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion includes/class-freemius.php
Original file line number Diff line number Diff line change
Expand Up @@ -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 ?
Expand Down
2 changes: 1 addition & 1 deletion start.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*
* @var string
*/
$this_sdk_version = '2.7.1';
$this_sdk_version = '2.7.2';

#region SDK Selection Logic --------------------------------------------------------------------

Expand Down

0 comments on commit eeac5f9

Please sign in to comment.