Roc 5 years ago
parent
commit
590fe24c84
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/Essensoft.AspNetCore.Payment.Alipay/AlipayNotifyClient.cs

+ 2 - 2
src/Essensoft.AspNetCore.Payment.Alipay/AlipayNotifyClient.cs

@@ -100,9 +100,9 @@ namespace Essensoft.AspNetCore.Payment.Alipay
                 throw new ArgumentNullException(nameof(options.AlipayPublicKey));
                 throw new ArgumentNullException(nameof(options.AlipayPublicKey));
             }
             }
 
 
-            var rsp = AlipayDictionaryParser.Parse<T>(parameters);
+            var notify = AlipayDictionaryParser.Parse<T>(parameters);
             CheckNotifySign(parameters, options);
             CheckNotifySign(parameters, options);
-            return Task.FromResult(rsp);
+            return Task.FromResult(notify);
         }
         }
 
 
         #endregion
         #endregion