Updated version to 1.1

Added Lance Willet
Tested WP 4.2
Check for WP error on Strava POST
Fix static method in RideShortcode
Add Title to Latest Map Widget
This commit is contained in:
Justin Foell
2015-05-11 22:28:33 -05:00
parent 6f6ed94329
commit fca88020a5
6 changed files with 42 additions and 29 deletions
+3
View File
@@ -26,6 +26,9 @@ class WPStrava_API {
$response = wp_remote_post( $url . $uri, $args );
if ( is_wp_error( $response ) )
return $response;
if ( $response['response']['code'] != 200 ) {
//see if there's useful info in the body
$body = json_decode( $response['body'] );