TwitterBridge: don't array_merge() non-arrays
Fixes: ErrorException: [2] array_merge(): Argument #2 is not an array
This commit is contained in:
parent
8616055959
commit
74d4e2fa10
@ -183,7 +183,9 @@ class SyncTwitterFriendsDaemon extends ParallelizingDaemon
|
||||
"of Twitter user $flink->foreign_id friends.");
|
||||
continue;
|
||||
} else {
|
||||
$friends = array_merge($friends, $more_friends);
|
||||
if (is_array($more_friends)) {
|
||||
$friends = array_merge($friends, $more_friends);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user