Skip to content

Commit

Permalink
Fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
Superomarking committed Dec 3, 2024
1 parent bf8732e commit 9f0773c
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
use pocketmine\network\mcpe\handler\PacketHandler;
use pocketmine\network\mcpe\JwtException;
use pocketmine\network\mcpe\JwtUtils;
use pocketmine\network\mcpe\NetworkSession;
use pocketmine\network\mcpe\protocol\LoginPacket;
use pocketmine\network\mcpe\protocol\types\login\AuthenticationData;
use pocketmine\network\mcpe\protocol\types\login\ClientData;
Expand Down Expand Up @@ -179,7 +178,7 @@ protected function parseClientData(string $clientDataJwt) : ClientData{
throw PacketHandlingException::wrap($e);
}

ProtocolUtils::injectClientData($this->session->getProtocol(), $clientDataClaims);
ProtocolUtils::injectClientData($this->session->getProtocol(), $clientDataClaims);

$mapper = new JsonMapper();
$mapper->bEnforceMapType = false;
Expand Down

0 comments on commit 9f0773c

Please sign in to comment.