forked from GNUsocial/gnu-social
Use recently implemented functions in saveKnownReplies
This commit is contained in:
parent
6772d991ae
commit
66289d3e76
@ -1583,7 +1583,7 @@ class Notice extends Managed_DataObject
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
$sender = Profile::getKV($this->profile_id);
|
$sender = $this->getProfile();
|
||||||
|
|
||||||
foreach (array_unique($uris) as $uri) {
|
foreach (array_unique($uris) as $uri) {
|
||||||
try {
|
try {
|
||||||
@ -1598,11 +1598,9 @@ class Notice extends Managed_DataObject
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->saveReply($profile->id);
|
$this->saveReply($profile->getID());
|
||||||
self::blow('reply:stream:%d', $profile->id);
|
self::blow('reply:stream:%d', $profile->getID());
|
||||||
}
|
}
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user