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