Merge pull request #10520 from annando/fatal

Added missing app class (avoid fatal error)
This commit is contained in:
Tobias Diekershoff 2021-07-19 19:06:09 +02:00 committed by GitHub
commit 0eed813037
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -24,6 +24,7 @@ namespace Friendica\Module\DFRN;
use Friendica\BaseModule;
use Friendica\Core\Logger;
use Friendica\Core\System;
use Friendica\DI;
use Friendica\Model\Contact;
use Friendica\Model\Conversation;
use Friendica\Model\User;
@ -54,7 +55,7 @@ class Notify extends BaseModule
self::dispatchPrivate($user, $postdata);
} elseif (!self::dispatchPublic($postdata)) {
require_once 'mod/salmon.php';
salmon_post($a, $postdata);
salmon_post(DI::app(), $postdata);
}
}