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