lib/deliver/upload_metadata.rb in deliver-1.13.2 vs lib/deliver/upload_metadata.rb in deliver-1.13.3

- old
+ new

@@ -161,10 +161,10 @@ private def set_review_information(v, options) return unless options[:app_review_information] info = options[:app_review_information] - UI.user_error!("`app_review_information` must be a hash") unless info.kind_of?(Hash) + UI.user_error!("`app_review_information` must be a hash", show_github_issues: true) unless info.kind_of?(Hash) v.review_first_name = info[:first_name] if info[:first_name] v.review_last_name = info[:last_name] if info[:last_name] v.review_phone_number = info[:phone_number] if info[:phone_number] v.review_email = info[:email_address] if info[:email_address]