spaceship/lib/spaceship/portal/app.rb in fastlane-2.13.0 vs spaceship/lib/spaceship/portal/app.rb in fastlane-2.14.0
- old
+ new
@@ -101,10 +101,10 @@
# Find a specific App ID based on the bundle_id
# @param mac [Bool] Searches Mac apps if true
# @return (App) The app you're looking for. This is nil if the app can't be found.
def find(bundle_id, mac: false)
all(mac: mac).find do |app|
- app.bundle_id == bundle_id
+ return app if app.bundle_id.casecmp(bundle_id) == 0
end
end
end
# Delete this App ID. This action will most likely fail if the App ID is already in the store