twitchrb 1.2.3 → 1.2.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: efe6dbb90fcec7a7f5ce13ca4b812349bfa16ff95140b30ba344b2b352d5176c
4
- data.tar.gz: 7e954ca5c0f4462e35d9950af57d43da72871ac708398dc97561912a8ae535c9
3
+ metadata.gz: 1269fdc61b940ec41b8dc926e407f7f33075998ad7ab488e191bb12e7f2926ee
4
+ data.tar.gz: 393eaef53b73443c32b2a26911acdfe45496d77ee0ce6f748daa61e8227a9fcc
5
5
  SHA512:
6
- metadata.gz: 9438a27de32ba91ea58e3a95ab705e0138d5274ba61274c1c190d1b88d1e2003d3171fcfdbaecdb230434b05db384ec200e8b49c90f7ced6096d2c2ef4967c49
7
- data.tar.gz: 20c286d14a3dfa432deec04f62864bf70282e124d346b2594f769021db3bca4c768319614a7689b9756b33bd224507f8f503fd7e7e5e302a9f7ef37dc1b1f24c
6
+ metadata.gz: 97c97cf66f5fe20ccea0f39fdbc14721359c81f29ec14b8aab501da91f73b603b8d77296d01eb63c6225619828f112629312742a70fae91c55c1c086f0b989f6
7
+ data.tar.gz: d8d65949ae74ea874ab22c4d4e4ed39d26a5f80824254245e31a200e9067d8ac6c944d277bba087eefefceb6b93cafa863ba006f2e038fe0789cbf6f1fb8166c
@@ -15,9 +15,9 @@ module Twitch
15
15
  end
16
16
 
17
17
  body = response.body.dig("data")
18
- if body.count == 1
18
+ if id || name && body.count == 1
19
19
  Game.new body[0]
20
- elsif body.count > 1
20
+ elsif ids || names && body.count > 1
21
21
  Collection.from_response(response, type: Game)
22
22
  else
23
23
  return nil
@@ -15,9 +15,9 @@ module Twitch
15
15
  end
16
16
 
17
17
  body = response.body.dig("data")
18
- if body.count == 1
18
+ if id || username && body.count == 1
19
19
  User.new body[0]
20
- elsif body.count > 1
20
+ elsif ids || usernames && body.count > 1
21
21
  Collection.from_response(response, type: User)
22
22
  else
23
23
  return nil
@@ -1,3 +1,3 @@
1
1
  module Twitch
2
- VERSION = "1.2.3"
2
+ VERSION = "1.2.4"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: twitchrb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.3
4
+ version: 1.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dean Perry
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-01-27 00:00:00.000000000 Z
11
+ date: 2024-01-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday