Skip to content

Commit

Permalink
Merge pull request #384 from 90K2/master
Browse files Browse the repository at this point in the history
hotfix: RefundStarPayment request
  • Loading branch information
pengrad authored Jun 29, 2024
2 parents 02cf0e8 + acc7c0d commit c3a5449
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public class RefundStarPayment extends BaseRequest<RefundStarPayment, BaseRespon

public RefundStarPayment(Long userId, String telegramPaymentChargeId) {
super(BaseResponse.class);
add("user_id", telegramPaymentChargeId).add("telegram_payment_charge_id", telegramPaymentChargeId);
add("user_id", userId).add("telegram_payment_charge_id", telegramPaymentChargeId);
}

}

0 comments on commit c3a5449

Please sign in to comment.