Return the correct URI in Deleted_notice

This commit is contained in:
Mikael Nordfeldth 2015-10-03 15:31:56 +02:00
parent 7c68537b06
commit db726ca294
1 changed files with 2 additions and 2 deletions

View File

@ -134,12 +134,12 @@ class Deleted_notice extends Managed_DataObject
public function getTargetUri()
{
return $this->uri;
return $this->act_uri;
}
public function getUri()
{
return $this->act_uri;
return $this->uri;
}
public function asActivityObject(Profile $scoped=null)