forked from friendica/friendica-addons
Merge pull request #461 from annando/bugfix-photo
Some more old photos ...
This commit is contained in:
commit
e1c67f3bf4
|
@ -998,8 +998,6 @@ function statusnet_fetch_contact($uid, $contact, $create_user) {
|
|||
group_add_member($uid,'',$contact_id,$g[0]['def_gid']);
|
||||
}
|
||||
|
||||
require_once("Photo.php");
|
||||
|
||||
$photos = Photo::importProfilePhoto($contact->profile_image_url,$uid,$contact_id);
|
||||
|
||||
q("UPDATE `contact` SET `photo` = '%s',
|
||||
|
@ -1025,8 +1023,6 @@ function statusnet_fetch_contact($uid, $contact, $create_user) {
|
|||
|
||||
logger("statusnet_fetch_contact: Updating contact ".$contact->screen_name, LOGGER_DEBUG);
|
||||
|
||||
require_once("Photo.php");
|
||||
|
||||
$photos = Photo::importProfilePhoto($contact->profile_image_url, $uid, $r[0]['id']);
|
||||
|
||||
q("UPDATE `contact` SET `photo` = '%s',
|
||||
|
|
|
@ -1024,8 +1024,6 @@ function twitter_fetch_contact($uid, $contact, $create_user) {
|
|||
group_add_member($uid,'',$contact_id,$g[0]['def_gid']);
|
||||
}
|
||||
|
||||
require_once("Photo.php");
|
||||
|
||||
$photos = Photo::importProfilePhoto($avatar, $uid, $contact_id, true);
|
||||
|
||||
if ($photos) {
|
||||
|
@ -1057,8 +1055,6 @@ function twitter_fetch_contact($uid, $contact, $create_user) {
|
|||
|
||||
logger("twitter_fetch_contact: Updating contact ".$contact->screen_name, LOGGER_DEBUG);
|
||||
|
||||
require_once("Photo.php");
|
||||
|
||||
$photos = Photo::importProfilePhoto($avatar, $uid, $r[0]['id'], true);
|
||||
|
||||
if ($photos) {
|
||||
|
|
Loading…
Reference in a new issue