nicho92 / MtgDesktopCompanion

Cards manager for magic the gathering
Apache License 2.0
163 stars 35 forks source link

Card numbers can contain letters. #205

Closed ecotechie closed 2 years ago

ecotechie commented 2 years ago

When importing from DelverLens I noticed there is an issue with card numbers that contain letters. Maybe changing it to look for 1-4 digits and maybe a single char? Changing it from (\d+) to (\d{1,4}[a-z]?) worked for me.

image