This commit is contained in:
2026-06-12 10:10:48 +08:00
parent adde56bf1d
commit ef2dc94c71
+1 -1
View File
@@ -446,7 +446,7 @@ def _create_wechat_order(order: PaymentOrder, db_configs: dict[str, str]) -> str
}
)
if code == 200 and hasattr(result, 'get') and result.get('code_url'):
if code == 200 and result.get('code_url'):
# 注意:微信返回的 code_url 可能需要进一步处理成二维码图片地址
return result.get('code_url')
else: