From 2b72cdfd70b98068912481f5f0b02513edf62dc7 Mon Sep 17 00:00:00 2001 From: hungmin Date: Mon, 22 Jan 2024 14:26:14 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E4=BF=AE=E5=A4=8D=E8=AE=A2=E5=8D=95?= =?UTF-8?q?=E6=9F=A5=E8=AF=A2bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Runtime/GuruIAP/Runtime/Code/IAPServiceBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Runtime/GuruIAP/Runtime/Code/IAPServiceBase.cs b/Runtime/GuruIAP/Runtime/Code/IAPServiceBase.cs index 267cedb..9f2fa27 100644 --- a/Runtime/GuruIAP/Runtime/Code/IAPServiceBase.cs +++ b/Runtime/GuruIAP/Runtime/Code/IAPServiceBase.cs @@ -326,7 +326,7 @@ namespace Guru public Product GetProduct(string productName) { - if (_storeController == null || _storeController.products == null) + if (_storeController != null || _storeController.products != null) { var info = GetInfo(productName); if (info != null)