[twitter] Add yet another expected field for thread parent select in twitter_post_hook()
parent
79b49cbaee
commit
6a4dd6ed4b
|
@ -559,7 +559,7 @@ function twitter_post_hook(App $a, array &$b)
|
||||||
}
|
}
|
||||||
|
|
||||||
$condition = ['uri' => $b["thr-parent"], 'uid' => $b["uid"]];
|
$condition = ['uri' => $b["thr-parent"], 'uid' => $b["uid"]];
|
||||||
$thr_parent = Item::selectFirst(['uri', 'extid', 'author-nick', 'author-network'], $condition);
|
$thr_parent = Item::selectFirst(['uri', 'extid', 'author-link', 'author-nick', 'author-network'], $condition);
|
||||||
if (!DBA::isResult($thr_parent)) {
|
if (!DBA::isResult($thr_parent)) {
|
||||||
Logger::warning('No parent found', ['thr-parent' => $b["thr-parent"]]);
|
Logger::warning('No parent found', ['thr-parent' => $b["thr-parent"]]);
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in New Issue