@@ -1028,8 +1028,10 @@ class KMPurchaseEmbeddedWindowController: NSWindowController {
}
var licenseCode = ""
- if let license = VerificationManager.default().originLicenseCode, license.count > 0 {
- licenseCode = license
+ if productID == "com.brother.pdfreaderpro.mac.product_2" {
+ if let license = VerificationManager.default().originLicenseCode, license.count > 0 {
+ licenseCode = license
+ }
self._buyProduct(productID, count: pdfCount, discountId: coupomTextField.stringValue, payment: paymentMethod, license: licenseCode, email: emailTextField.stringValue) { [weak self] info, err in
guard let self = self else { return }