Version Description
- [Bugfix] Performance improvement and minor bugfix
Download this release
Release Info
Developer | Heateor |
Plugin | WordPress Social Sharing Plugin – Sassy Social Share |
Version | 3.2.23 |
Comparing to | |
See all releases |
Code changes from version 3.2.22 to 3.2.23
- public/class-sassy-social-share-public.php +1 -1
- readme.txt +8 -2
- sassy-social-share.php +2 -2
public/class-sassy-social-share-public.php
CHANGED
@@ -1657,7 +1657,7 @@ class Sassy_Social_Share_Public {
|
|
1657 |
}
|
1658 |
if ( $url == '' ) { continue; }
|
1659 |
$response = wp_remote_get( $url, array( 'timeout' => 15, 'user-agent' => 'Sassy-Social-Share' ) );
|
1660 |
-
if ( $provider == 'facebook' && isset( $response['response']['code'] ) && 400 === $response['response']['code'] ) {
|
1661 |
$body = json_decode( wp_remote_retrieve_body( $response ) );
|
1662 |
if ( isset( $body->error ) && isset( $body->error->code ) && $body->error->code == 190 ) {
|
1663 |
delete_option( 'heateor_sss_fb_access_token' );
|
1657 |
}
|
1658 |
if ( $url == '' ) { continue; }
|
1659 |
$response = wp_remote_get( $url, array( 'timeout' => 15, 'user-agent' => 'Sassy-Social-Share' ) );
|
1660 |
+
if ( $provider == 'facebook' && ! is_wp_error( $response ) && isset( $response['response']['code'] ) && 400 === $response['response']['code'] ) {
|
1661 |
$body = json_decode( wp_remote_retrieve_body( $response ) );
|
1662 |
if ( isset( $body->error ) && isset( $body->error->code ) && $body->error->code == 190 ) {
|
1663 |
delete_option( 'heateor_sss_fb_access_token' );
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.heateor.com/donate/?action=Sassy+Social+Share
|
|
4 |
Tags: social share, social sharing, social media share, share facebook, facebook social share, wordpress social share, share buttons, social share buttons, facebook like, twitter tweet, whatsapp share, line share
|
5 |
Requires at least: 2.5.0
|
6 |
Tested up to: 5.2
|
7 |
-
Stable tag: 3.2.
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Slickest, Simplest and Optimized Share buttons. Facebook, Twitter, Reddit, Pinterest, WhatsApp and over 100 more.
|
@@ -123,6 +123,9 @@ Yes, we can help you with it. Just drop an email at support[at]heateor[dot]com
|
|
123 |
4. **Universal Sharing Popup**: Universal Sharing popup having all the supported sharing and bookmarking services
|
124 |
|
125 |
== Changelog ==
|
|
|
|
|
|
|
126 |
= 3.2.22 =
|
127 |
* [New] Added Telegram in social media follow icons
|
128 |
* [Bugfix] Performance improvement
|
@@ -755,4 +758,7 @@ Yes, we can help you with it. Just drop an email at support[at]heateor[dot]com
|
|
755 |
|
756 |
= 3.2.22 =
|
757 |
* [New] Added Telegram in social media follow icons
|
758 |
-
* [Bugfix] Performance improvement
|
|
|
|
|
|
4 |
Tags: social share, social sharing, social media share, share facebook, facebook social share, wordpress social share, share buttons, social share buttons, facebook like, twitter tweet, whatsapp share, line share
|
5 |
Requires at least: 2.5.0
|
6 |
Tested up to: 5.2
|
7 |
+
Stable tag: 3.2.23
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Slickest, Simplest and Optimized Share buttons. Facebook, Twitter, Reddit, Pinterest, WhatsApp and over 100 more.
|
123 |
4. **Universal Sharing Popup**: Universal Sharing popup having all the supported sharing and bookmarking services
|
124 |
|
125 |
== Changelog ==
|
126 |
+
= 3.2.23 =
|
127 |
+
* [Bugfix] Performance improvement and minor bugfix
|
128 |
+
|
129 |
= 3.2.22 =
|
130 |
* [New] Added Telegram in social media follow icons
|
131 |
* [Bugfix] Performance improvement
|
758 |
|
759 |
= 3.2.22 =
|
760 |
* [New] Added Telegram in social media follow icons
|
761 |
+
* [Bugfix] Performance improvement
|
762 |
+
|
763 |
+
= 3.2.23 =
|
764 |
+
* [Bugfix] Performance improvement and minor bugfix
|
sassy-social-share.php
CHANGED
@@ -7,7 +7,7 @@
|
|
7 |
* Plugin Name: Sassy Social Share
|
8 |
* Plugin URI: https://www.heateor.com
|
9 |
* Description: Slickest, Simplest and Optimized Share buttons. Facebook, Twitter, Reddit, Pinterest, WhatsApp and over 100 more
|
10 |
-
* Version: 3.2.
|
11 |
* Author: Team Heateor
|
12 |
* Author URI: https://www.heateor.com
|
13 |
* Text Domain: sassy-social-share
|
@@ -21,7 +21,7 @@ if ( ! defined( 'WPINC' ) ) {
|
|
21 |
die;
|
22 |
}
|
23 |
|
24 |
-
define( 'HEATEOR_SSS_VERSION', '3.2.
|
25 |
define( 'HEATEOR_SSS_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
26 |
|
27 |
// plugin core class object
|
7 |
* Plugin Name: Sassy Social Share
|
8 |
* Plugin URI: https://www.heateor.com
|
9 |
* Description: Slickest, Simplest and Optimized Share buttons. Facebook, Twitter, Reddit, Pinterest, WhatsApp and over 100 more
|
10 |
+
* Version: 3.2.23
|
11 |
* Author: Team Heateor
|
12 |
* Author URI: https://www.heateor.com
|
13 |
* Text Domain: sassy-social-share
|
21 |
die;
|
22 |
}
|
23 |
|
24 |
+
define( 'HEATEOR_SSS_VERSION', '3.2.23' );
|
25 |
define( 'HEATEOR_SSS_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
26 |
|
27 |
// plugin core class object
|