Crash fix

This commit is contained in:
ZeldaZach 2024-12-01 09:15:53 -05:00
parent c6f1253476
commit 2a7befaa9d
No known key found for this signature in database

View file

@ -170,6 +170,10 @@ CardInfoPerSet PrintingSelector::getSetForUUID(const QString &uuid)
QList<CardInfoPerSet> PrintingSelector::prependPrintingsInDeck(const QList<CardInfoPerSet> &sets)
{
if (!selectedCard) {
return {};
}
CardInfoPerSetMap cardInfoPerSets = selectedCard->getSets();
QList<QPair<CardInfoPerSet, int>> countList;