Roc 5 vuotta sitten
vanhempi
sitoutus
590fe24c84
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  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));
             }
 
-            var rsp = AlipayDictionaryParser.Parse<T>(parameters);
+            var notify = AlipayDictionaryParser.Parse<T>(parameters);
             CheckNotifySign(parameters, options);
-            return Task.FromResult(rsp);
+            return Task.FromResult(notify);
         }
 
         #endregion