Open danielvetromilla opened 8 years ago
To temporary workaround this in my website, i've added a small regex replace to remove the last ocurrence of "e" letter in card id string.
- hearthstone-cards/public/assets/js/public.js
var card_id = $( this ).data( "hcfw-card-id" ).replace(/e$/, '');
Cards with ID ending with "e" letter (e.g. Card ID: EX1_128e) displays a black card image with no information at all.
Take this example: [Ocultar]
It will display this broken image:
Card ID 128e
But if i remove the "e" letter from its ID, it shows correctly:
Card ID 128
This issue was tested using pt-BR language.