Skip to content
This repository has been archived by the owner on Jan 3, 2024. It is now read-only.

Commit

Permalink
Fix Diners Club card name
Browse files Browse the repository at this point in the history
  • Loading branch information
PavelSynek committed Nov 14, 2016
1 parent c7deadf commit 25f0302
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public enum CardType implements Serializable {
MASTERCARD("MasterCard", R.drawable.ic_card_mastercard, CardRegex.REGX_MC, CardRegex.REGX_MC_TYPE),
AMEX("American Express", R.drawable.ic_card_amex, CardRegex.REGX_AMEX, CardRegex.REGX_AMEX_TYPE),
DISCOVER("Discover", R.drawable.ic_card_discover, CardRegex.REGX_DISCOVER, CardRegex.REGX_DISCOVER_TYPE),
DINERS("DinersClub",R.drawable.ic_card_diners,CardRegex.REGX_DINERS_CLUB,CardRegex.REGX_DINERS_CLUB_TYPE),
DINERS("Diners Club", R.drawable.ic_card_diners, CardRegex.REGX_DINERS_CLUB, CardRegex.REGX_DINERS_CLUB_TYPE),
JCB("JCB",R.drawable.ic_card_jcb,CardRegex.REGX_JCB,CardRegex.REGX_JCB_TYPE),
INVALID("Unknown", R.drawable.ic_card_placeholder, null, null);

Expand Down

0 comments on commit 25f0302

Please sign in to comment.