Skip to content

Commit

Permalink
fix: dyslexia?
Browse files Browse the repository at this point in the history
  • Loading branch information
TurtIeSocks committed Jan 13, 2024
1 parent c3f35dc commit 3c25864
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion server/src/graphql/typeDefs/scanner.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ type Event {
event_expire_timestamp: Int
showcase_pokemon_id: Int
showcase_pokemon_form_id: Int
showcase_pokemon_id_type: Int
showcase_pokemon_type_id: Int
showcase_rankings: ShowcaseDetails
showcase_ranking_standard: Int
}
Expand Down
4 changes: 2 additions & 2 deletions server/src/models/Pokestop.js
Original file line number Diff line number Diff line change
Expand Up @@ -737,8 +737,8 @@ class Pokestop extends Model {
event.showcase_pokemon_form_id ?? 0
}`
]
: event.showcase_pokemon_id_type
? filters[`h${event.showcase_pokemon_id_type}`]
: event.showcase_pokemon_type_id
? filters[`h${event.showcase_pokemon_type_id}`]
: true,
)
}
Expand Down
2 changes: 1 addition & 1 deletion src/services/queries/pokestop.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ const event = gql`
event_expire_timestamp
showcase_pokemon_id
showcase_pokemon_form_id
showcase_pokemon_id_type
showcase_pokemon_type_id
showcase_ranking_standard
showcase_rankings {
total_entries
Expand Down

0 comments on commit 3c25864

Please sign in to comment.