mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-16 18:58:00 +00:00
Fix if collector number is null
This commit is contained in:
@@ -264,7 +264,7 @@ public abstract class ImageFetcher {
|
|||||||
tis = it.next();
|
tis = it.next();
|
||||||
String tokenCode = edition.getTokensCode();
|
String tokenCode = edition.getTokensCode();
|
||||||
String langCode = edition.getCardsLangCode();
|
String langCode = edition.getCardsLangCode();
|
||||||
if (tis.collectorNumber.isEmpty()) {
|
if (tis.collectorNumber == null || tis.collectorNumber.isEmpty()) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user