Merge branch 'fix-twitter-uri' into 'master'
Twitter URIs have changed The #! was deprecated ages ago, and Twitter forces HTTPS these days. See merge request !43
This commit is contained in:
commit
0f938ff234
@ -221,7 +221,7 @@ class TwitterImport
|
||||
*/
|
||||
function makeStatusURI($username, $id)
|
||||
{
|
||||
return 'http://twitter.com/#!/'
|
||||
return 'https://twitter.com/'
|
||||
. $username
|
||||
. '/status/'
|
||||
. $id;
|
||||
@ -244,16 +244,19 @@ class TwitterImport
|
||||
$profile->profileurl = $profileurl;
|
||||
$profile->limit(1);
|
||||
|
||||
if (!$profile->find(true)) {
|
||||
$profile->profileurl = str_replace('https://', 'http://', $profileurl);
|
||||
if (!$profile->find(true)) {
|
||||
throw new NoResultException($profile);
|
||||
}
|
||||
}
|
||||
return $profile;
|
||||
}
|
||||
|
||||
protected function ensureProfile($twuser)
|
||||
{
|
||||
// check to see if there's already a profile for this user
|
||||
$profileurl = 'http://twitter.com/' . $twuser->screen_name;
|
||||
$profileurl = 'https://twitter.com/' . $twuser->screen_name;
|
||||
try {
|
||||
$profile = $this->getProfileByUrl($twuser->screen_name, $profileurl);
|
||||
$this->updateAvatar($twuser, $profile);
|
||||
@ -539,9 +542,9 @@ class TwitterImport
|
||||
static function atLink($screenName, $fullName, $orig)
|
||||
{
|
||||
if (!empty($fullName)) {
|
||||
return "<a href='http://twitter.com/#!/{$screenName}' title='{$fullName}'>{$orig}</a>";
|
||||
return "<a href='https://twitter.com/{$screenName}' title='{$fullName}'>{$orig}</a>";
|
||||
} else {
|
||||
return "<a href='http://twitter.com/#!/{$screenName}'>{$orig}</a>";
|
||||
return "<a href='https://twitter.com/{$screenName}'>{$orig}</a>";
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user