mirror of
https://github.com/openvk/openvk
synced 2024-11-11 01:19:53 +03:00
VKAPI: Wall.getById hotfix (for real now)
Resolves GH-909
This commit is contained in:
parent
050ab43889
commit
3ae9def10a
1 changed files with 1 additions and 1 deletions
|
@ -215,7 +215,7 @@ final class Wall extends VKAPIRequestHandler
|
|||
foreach($psts as $pst) {
|
||||
$id = explode("_", $pst);
|
||||
$post = (new PostsRepo)->getPostById(intval($id[0]), intval($id[1]));
|
||||
if($post || !$post->isDeleted()) {
|
||||
if($post && !$post->isDeleted()) {
|
||||
$from_id = get_class($post->getOwner()) == "openvk\Web\Models\Entities\Club" ? $post->getOwner()->getId() * (-1) : $post->getOwner()->getId();
|
||||
$attachments = [];
|
||||
$repost = []; // чел высрал семь сигарет 😳 помянем 🕯
|
||||
|
|
Loading…
Reference in a new issue