Skip to content

Commit

Permalink
ライセンスステータスが認証失敗のときはステータスをキャッシュしないように変更
Browse files Browse the repository at this point in the history
  • Loading branch information
inc2734 committed Aug 6, 2024
1 parent c147a27 commit 273ab74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Framework/Controller/Manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ public static function get_license_status( $license_key ) {

$transient_name = 'snow-monkey-license-status-' . $license_key;
$transient = get_transient( $transient_name );
if ( false !== $transient ) {
if ( false !== $transient && 'false' !== $transient ) {
return $transient;
}

Expand Down

0 comments on commit 273ab74

Please sign in to comment.