fix:修复订单查询bug
parent
fa0861c770
commit
2b72cdfd70
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue