From c6bc83ad87574ef4c418ea97e3e5b42bdc2cad56 Mon Sep 17 00:00:00 2001 From: netkas Date: Tue, 14 Jan 2025 15:45:25 -0500 Subject: [PATCH] Fix key name in RPC request payload --- src/Socialbox/SocialClient.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Socialbox/SocialClient.php b/src/Socialbox/SocialClient.php index 3ff5a11..829728e 100644 --- a/src/Socialbox/SocialClient.php +++ b/src/Socialbox/SocialClient.php @@ -644,7 +644,7 @@ return Peer::fromArray($this->sendRequest( new RpcRequest(StandardMethods::RESOLVE_PEER->value, Utilities::randomCrc32(), [ - 'peer_address' => $peerAddress + 'peer' => $peerAddress ]) )->getResponse()->getResult()); }