浏览代码

【内嵌支付】修复“paddle支付邮编为空也可以购买”

wanjun 6 月之前
父节点
当前提交
560e239f9b
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      PDF Office/PDF Master/Class/Purchase/DMG/KMPurchaseEmbeddedWindowController.swift

+ 1 - 1
PDF Office/PDF Master/Class/Purchase/DMG/KMPurchaseEmbeddedWindowController.swift

@@ -910,7 +910,7 @@ class KMPurchaseEmbeddedWindowController: NSWindowController {
             return
         }
         if paymentMethod == .paddle {
-            if !isNumeric(paddleTextField.stringValue) {
+            if !isNumeric(paddleTextField.stringValue) && paddleTextField.stringValue != "" {
                 let alert = NSAlert()
                 alert.alertStyle = .critical
                 alert.messageText = NSLocalizedString("Connection Error", comment: "")