Skip to content

Commit

Permalink
Fix extra slash in UPS endpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
Cody Fauser committed Mar 27, 2009
1 parent f58cc69 commit 418aa28
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
* Fix extra slash in UPS endpoints [cody]
* Add support for validating credentials to Shipwire [cody]
* Add support for ssl_get to PostsData. Update Carriers to use PostsData module. Turn on retry safety for carriers [cody]
* Add support for Shipwire Shipping Rate API [cody]
Expand Down
4 changes: 2 additions & 2 deletions lib/active_shipping/shipping/carriers/ups.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ class UPS < Carrier
LIVE_URL = 'https://www.ups.com'

RESOURCES = {
:rates => '/ups.app/xml/Rate',
:track => '/ups.app/xml/Track'
:rates => 'ups.app/xml/Rate',
:track => 'ups.app/xml/Track'
}

PICKUP_CODES = {
Expand Down

0 comments on commit 418aa28

Please sign in to comment.