wrong field
This commit is contained in:
parent
cbc48a4fd4
commit
2a41f0b104
|
@ -214,7 +214,7 @@ function dfrn_dispatch_public($postdata)
|
|||
|
||||
function dfrn_dispatch_private($user, $postdata)
|
||||
{
|
||||
$msg = Diaspora::decodeRaw($postdata, $user['privKey'] ?? '');
|
||||
$msg = Diaspora::decodeRaw($postdata, $user['prvkey'] ?? '');
|
||||
if (!$msg) {
|
||||
System::xmlExit(4, 'Unable to parse message');
|
||||
}
|
||||
|
|
|
@ -87,7 +87,7 @@ class Receive extends BaseModule
|
|||
|
||||
$importer = User::getByGuid($guid);
|
||||
|
||||
$msg = self::decodePost(false, $importer['privKey'] ?? '');
|
||||
$msg = self::decodePost(false, $importer['prvkey'] ?? '');
|
||||
|
||||
self::$logger->info('Diaspora: Dispatching.');
|
||||
|
||||
|
|
Loading…
Reference in a new issue