Changeset 1517527
- Timestamp:
- 10/18/2016 07:01:11 PM (9 years ago)
- Location:
- ifttt-instagram-gallery/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (2 diffs)
-
ifttt-instagram-gallery.php (modified) (1 diff)
-
public/class-ifttt-instagram-gallery.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ifttt-instagram-gallery/trunk/README.txt
r1371777 r1517527 4 4 Tags: ifttt, ifthisthenthat, instagram, gallery 5 5 Requires at least: 3.9 6 Tested up to: 4. 4.26 Tested up to: 4.6.1 7 7 Stable tag: trunk 8 8 License: GPLv3 … … 121 121 = 1.0.4 = 122 122 * Bugfix after changed instagram URLs. Crop query part, e.g. invoke https://scontent-frt3-1.cdninstagram.com/t51.2885-15/e35/1208218_821804957925622_1457586436_n.jpg instead of https://scontent-frt3-1.cdninstagram.com/t51.2885-15/e35/1208218_821804957925622_1457586436_n.jpg?ig_cache_key=MTIwNDU4NDU1NzU3MjMxODAxNg%3D%3D.2 123 124 = 1.0.5 = 125 * Enhancement in get_final_url() method: Don't fail if response code isn't 2xx, just use the last known URL. Avoids problems when Instagram returns a code 400 because of spammy behaviour. -
ifttt-instagram-gallery/trunk/ifttt-instagram-gallery.php
r1371777 r1517527 11 11 * Plugin URI: http://www.bjoerne.com 12 12 * Description: IFTTT Instagram Gallery is a highly configurable widget that automatically shares your latest Instagram pictures in an amazing looking photo grid on your WordPress blog. 13 * Version: 1.0. 413 * Version: 1.0.5 14 14 * Author: Björn Weinbrenner 15 15 * Author URI: http://www.bjoerne.com/ -
ifttt-instagram-gallery/trunk/public/class-ifttt-instagram-gallery.php
r1371777 r1517527 29 29 * @var string 30 30 */ 31 const VERSION = '1.0. 4';31 const VERSION = '1.0.5'; 32 32 33 33 /** … … 141 141 throw new Exception( 'No redirect url found in Location header' ); 142 142 } 143 } elseif ( preg_match( '/^20.$/', $reponse_code ) ) {144 return $url;145 143 } else { 146 throw new Exception( "Unexpected response code for url '$url': $reponse_code" ); 147 } 148 } 144 break; 145 } 146 } 147 return $url; 149 148 } 150 149
Note: See TracChangeset
for help on using the changeset viewer.