Skip to content

Commit

Permalink
Merge pull request c-kzxvldkhX#83 from JathamJ/master
Browse files Browse the repository at this point in the history
增加 允许对于title是收款通知的判断
  • Loading branch information
WeihuaGu authored Mar 17, 2020
2 parents dfb58bb + 1eeef2a commit c790fa4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public AlipayPmentayNotificationHandle(String pkgtype, Notification notification

}
public void handleNotification(){
if(title.contains("支付宝") | title.contains("收钱码")){
if(title.contains("支付宝") | title.contains("收钱码") | title.contains("收款通知")){
//不可将转账判断延后放,以防止通过昵称虚构金额
if(content.contains("向你转了1笔钱")){
Map<String,String> postmap=new HashMap<String,String>();
Expand Down

0 comments on commit c790fa4

Please sign in to comment.