Skip to content

Commit

Permalink
Merge pull request #20 from mckeed/ipad-pro-inches
Browse files Browse the repository at this point in the history
Fix missing '"' in iPad names
  • Loading branch information
rikas authored Feb 28, 2024
2 parents a97ca4e + dfa5c2c commit 43df6ec
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/ios/devices.rb
Original file line number Diff line number Diff line change
Expand Up @@ -253,13 +253,13 @@ def self.search(device_type)
when 'iPad14,2'
Model.new(device_type, 'iPad mini 6', 'Wi-Fi+LTE')
when 'iPad14,3'
Model.new(device_type, 'iPad Pro 11', '4th Gen, Wi-Fi')
Model.new(device_type, 'iPad Pro 11"', '4th Gen, Wi-Fi')
when 'iPad14,4'
Model.new(device_type, 'iPad Pro 11', '4th Gen, Wi-Fi+LTE')
Model.new(device_type, 'iPad Pro 11"', '4th Gen, Wi-Fi+LTE')
when 'iPad14,5'
Model.new(device_type, 'iPad Pro 12.9', '6th Gen, Wi-Fi')
Model.new(device_type, 'iPad Pro 12.9"', '6th Gen, Wi-Fi')
when 'iPad14,6'
Model.new(device_type, 'iPad Pro 12.9', '6th Gen, Wi-Fi+LTE')
Model.new(device_type, 'iPad Pro 12.9"', '6th Gen, Wi-Fi+LTE')
when 'iPod1,1'
Model.new(device_type, 'iPod touch')
when 'iPod2,1'
Expand Down

0 comments on commit 43df6ec

Please sign in to comment.