Resetting ImageFetcher to use collectorNumber as string

This commit is contained in:
leriomaggio
2021-05-24 19:36:24 +01:00
parent 019af5d238
commit 66045abf16

View File

@@ -93,7 +93,7 @@ public abstract class ImageFetcher {
} }
// see https://scryfall.com/blog 2020/8/6, and // see https://scryfall.com/blog 2020/8/6, and
// https://scryfall.com/docs/api/cards/collector // https://scryfall.com/docs/api/cards/collector
downloadUrls.add(String.format("https://api.scryfall.com/cards/%s/%d/%s?format=image&version=normal%s", downloadUrls.add(String.format("https://api.scryfall.com/cards/%s/%s/%s?format=image&version=normal%s",
editionMciCode, cardCollectorNumber, langCode, faceParam)); editionMciCode, cardCollectorNumber, langCode, faceParam));
} }