spaceship/lib/spaceship/tunes/tunes_client.rb in fastlane-2.113.0.beta.20190104200013 vs spaceship/lib/spaceship/tunes/tunes_client.rb in fastlane-2.113.0.beta.20190105200036
- old
+ new
@@ -1109,17 +1109,17 @@
end
handle_itc_response(r.body)
# App Store Connect still returns a success status code even the submission
- # was failed because of Ad ID Info / Export Complicance. This checks for any section error
+ # was failed because of Ad ID Info / Export Compliance. This checks for any section error
# keys in returned adIdInfo / exportCompliance and prints them out.
ad_id_error_keys = r.body.fetch('data').fetch('adIdInfo').fetch('sectionErrorKeys')
export_error_keys = r.body.fetch('data').fetch('exportCompliance').fetch('sectionErrorKeys')
if ad_id_error_keys.any?
raise "Something wrong with your Ad ID information: #{ad_id_error_keys}."
elsif export_error_keys.any?
- raise "Something wrong with your Export Complicance: #{export_error_keys}"
+ raise "Something wrong with your Export Compliance: #{export_error_keys}"
elsif r.body.fetch('messages').fetch('info').last == "Successful POST"
# success
else
raise "Something went wrong when submitting the app for review. Make sure to pass valid options to submit your app for review"
end