forked from friendica/friendica-addons
gpluspost: Don't create the data for the RSS-Feed for Hootsuite, if you can post directly via plugin.
This commit is contained in:
parent
3ec6970d09
commit
bcdb734f0e
|
@ -233,24 +233,25 @@ function gpluspost_send(&$a,&$b) {
|
||||||
if (!get_pconfig($b["uid"],'gpluspost','no_loop_prevention') and ($b['app'] == "Google+"))
|
if (!get_pconfig($b["uid"],'gpluspost','no_loop_prevention') and ($b['app'] == "Google+"))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
// Always do the export via RSS-Feed (even if NextScripts is enabled), since it doesn't hurt
|
if (!gpluspost_nextscripts()) {
|
||||||
$itemlist = get_pconfig($b["uid"],'gpluspost','itemlist');
|
// Posting via RSS-Feed and Hootsuite
|
||||||
$items = explode(",", $itemlist);
|
$itemlist = get_pconfig($b["uid"],'gpluspost','itemlist');
|
||||||
|
$items = explode(",", $itemlist);
|
||||||
|
|
||||||
$i = 0;
|
$i = 0;
|
||||||
$newitems = array($b['id']);
|
$newitems = array($b['id']);
|
||||||
foreach ($items AS $item)
|
foreach ($items AS $item)
|
||||||
if ($i++ < 9)
|
if ($i++ < 9)
|
||||||
$newitems[] = $item;
|
$newitems[] = $item;
|
||||||
|
|
||||||
$itemlist = implode(",", $newitems);
|
$itemlist = implode(",", $newitems);
|
||||||
|
|
||||||
logger('gpluspost_send: new itemlist: '.$itemlist." for uid ".$b["uid"]);
|
logger('gpluspost_send: new itemlist: '.$itemlist." for uid ".$b["uid"]);
|
||||||
|
|
||||||
set_pconfig($b["uid"],'gpluspost','itemlist', $itemlist);
|
set_pconfig($b["uid"],'gpluspost','itemlist', $itemlist);
|
||||||
|
|
||||||
// Posting via NextScripts
|
} else {
|
||||||
if (gpluspost_nextscripts()) {
|
// Posting via NextScripts
|
||||||
$username = get_pconfig($b['uid'],'gpluspost','username');
|
$username = get_pconfig($b['uid'],'gpluspost','username');
|
||||||
$password = get_pconfig($b['uid'],'gpluspost','password');
|
$password = get_pconfig($b['uid'],'gpluspost','password');
|
||||||
$page = get_pconfig($b['uid'],'gpluspost','page');
|
$page = get_pconfig($b['uid'],'gpluspost','page');
|
||||||
|
|
Loading…
Reference in a new issue