Introduce neat function getFeedSub() on Ostatus_profile

This commit is contained in:
Mikael Nordfeldth 2017-05-01 21:17:22 +02:00
parent f4d6710a0f
commit caa5fb75b3
1 changed files with 6 additions and 1 deletions

View File

@ -80,6 +80,11 @@ class Ostatus_profile extends Managed_DataObject
return $this->uri;
}
public function getFeedSub()
{
return FeedSub::getByUri($this->feeduri);
}
static function fromProfile(Profile $profile)
{
$oprofile = Ostatus_profile::getKV('profile_id', $profile->getID());
@ -1858,7 +1863,7 @@ class Ostatus_profile extends Managed_DataObject
if (array_key_exists('feedurl', $hints) && common_valid_http_url($hints['feedurl'])) {
try {
$feedsub = FeedSub::getByUri($this->feeduri);
$feedsub = $this->getFeedSub();
common_debug('URIFIX Changing FeedSub id==['._ve($feedsub->id).'] feeduri '._ve($feedsub->uri).' to '._ve($hints['feedurl']));
$feedorig = clone($feedsub);
$feedsub->uri = $hints['feedurl'];