Merge pull request #9851 from MrPetovan/bug/fatal-errors

Replace obsolete call to Item::selectFirstThreadForUser in Module\Item\Ignore
This commit is contained in:
Michael Vogel 2021-01-22 23:16:25 +01:00 committed by GitHub
commit 615e6f20f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ use Friendica\BaseModule;
use Friendica\Core\Session;
use Friendica\Core\System;
use Friendica\DI;
use Friendica\Model\Item;
use Friendica\Model\Post;
use Friendica\Network\HTTPException;
/**
@ -50,7 +50,7 @@ class Ignore extends BaseModule
throw new HTTPException\BadRequestException();
}
$thread = Item::selectFirstThreadForUser(local_user(), ['uid', 'ignored'], ['iid' => $message_id]);
$thread = Post::selectFirstThreadForUser(local_user(), ['uid', 'ignored'], ['iid' => $message_id]);
if (!$dba->isResult($thread)) {
throw new HTTPException\BadRequestException();
}