Skip to content

Commit

Permalink
fix: license key was missing on get_version call
Browse files Browse the repository at this point in the history
  • Loading branch information
selul committed Aug 23, 2019
1 parent f641e18 commit c02f225
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Modules/Licenser.php
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ private function get_version_data() {
$api_params = array(
'edd_action' => 'get_version',
'version' => $this->product->get_version(),
'license' => empty( $this->license_key ) ? 'free' : '',
'license' => empty( $this->license_key ) ? 'free' : $this->license_key,
'name' => rawurlencode( $this->product->get_name() ),
'slug' => $this->product->get_slug(),
'author' => rawurlencode( $this->get_distributor_name() ),
Expand Down

0 comments on commit c02f225

Please sign in to comment.