Skip to content

Commit 644f880

Browse files
committed
bugfix: cannot get license tier
1 parent d0e4730 commit 644f880

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Licensing/LicenseManager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ public function getLicenseTier(): ?string
173173
if (($verificationResult = $this->cache()->get($cacheKey)) && $verificationResult instanceof LicenseVerificationResult) {
174174
$data = $verificationResult->getData();
175175

176-
return data_get($data, 'meta.product_variant_slug', null);
176+
return data_get($data, 'license.meta.product_variant_slug', null);
177177
}
178178

179179
} catch (\Throwable $th) {

0 commit comments

Comments
 (0)