spaceship/lib/spaceship/tunes/tunes_client.rb in fastlane-2.68.2 vs spaceship/lib/spaceship/tunes/tunes_client.rb in fastlane-2.69.0.beta.20171201010003

- old
+ new

@@ -107,15 +107,11 @@ end end def send_login_request(user, password) clear_user_cached_data - result = send_shared_login_request(user, password) - - store_cookie - - return result + send_shared_login_request(user, password) end # Sometimes we get errors or info nested in our data # This method allows you to pass in a set of keys to check for # along with the name of the sub_section of your original data @@ -755,10 +751,10 @@ # Fetches the User Detail information from ITC. This gets called often and almost never changes # so we cache it # @return [UserDetail] the response def user_detail_data - @_cached_user_detail_data ||= Spaceship::Tunes::UserDetail.factory(user_details_data, self) + @_cached_user_detail_data ||= Spaceship::Tunes::UserDetail.factory(user_details_data) end ##################################################### # @!group CandiateBuilds #####################################################