Skip to content

Commit

Permalink
fix(RPC): 🐛 Typo on DeeplinkRPC encrypt/decrypt endpoints.
Browse files Browse the repository at this point in the history
  • Loading branch information
Chralu committed Dec 18, 2024
1 parent 8989831 commit be8df89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/infrastructure/rpc/deeplink_server.dart
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ class ArchethicDeeplinkRPCServer extends DeeplinkRpcRequestReceiver {
);
registerHandler(
DeeplinkRpcRequestHandler(
route: const DeeplinkRpcRoute('encrypt_payload'),
route: const DeeplinkRpcRoute('encrypt_payloads'),
handle: (request) => _handle(
RPCEncryptPayloadsCommandHandler(),
request,
Expand All @@ -139,7 +139,7 @@ class ArchethicDeeplinkRPCServer extends DeeplinkRpcRequestReceiver {
);
registerHandler(
DeeplinkRpcRequestHandler(
route: const DeeplinkRpcRoute('decrypt_payload'),
route: const DeeplinkRpcRoute('decrypt_payloads'),
handle: (request) => _handle(
RPCDecryptPayloadsCommandHandler(),
request,
Expand Down

0 comments on commit be8df89

Please sign in to comment.