Skip to content

Commit

Permalink
mtgseattle: Use the right field for invalid EA foils
Browse files Browse the repository at this point in the history
  • Loading branch information
kodawah committed Apr 29, 2024
1 parent c9baf55 commit 993941b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mtgseattle/mtgseattle.go
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ func (ms *MTGSeattle) processProduct(channel chan<- responseChan, product, mode

// Sanity check, a bunch of EA cards are market as foil when they
// actually don't have a foil printing, just skip them
if strings.Contains(cardName, "Foil - Extended Art") {
if strings.Contains(title, "Foil - Extended Art") {
co, err := mtgmatcher.GetUUID(cardId)
if err != nil || !co.Foil {
return
Expand Down

0 comments on commit 993941b

Please sign in to comment.