mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-18 04:51:33 -07:00
[PictureLoader] Add hash of new gatherer card back image to blacklist (#6621)
This commit is contained in:
parent
485e4d56aa
commit
f0da3cff40
1 changed files with 4 additions and 1 deletions
|
|
@ -12,7 +12,10 @@
|
||||||
#include <QThreadPool>
|
#include <QThreadPool>
|
||||||
|
|
||||||
// Card back returned by gatherer when card is not found
|
// Card back returned by gatherer when card is not found
|
||||||
static const QStringList MD5_BLACKLIST = {"db0c48db407a907c16ade38de048a441"};
|
static const QStringList MD5_BLACKLIST = {
|
||||||
|
"db0c48db407a907c16ade38de048a441", // Old card back hash. Keep around just in case
|
||||||
|
"fbc7d763c08771c260b39e2115414eeb" // Current card back hash
|
||||||
|
};
|
||||||
|
|
||||||
CardPictureLoaderWorkerWork::CardPictureLoaderWorkerWork(const CardPictureLoaderWorker *worker, const ExactCard &toLoad)
|
CardPictureLoaderWorkerWork::CardPictureLoaderWorkerWork(const CardPictureLoaderWorker *worker, const ExactCard &toLoad)
|
||||||
: QObject(nullptr), cardToDownload(CardPictureToLoad(toLoad)),
|
: QObject(nullptr), cardToDownload(CardPictureToLoad(toLoad)),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue