Skip to content

Commit

Permalink
Rename variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Adriano Santos committed Oct 12, 2023
1 parent c988696 commit 4d3a4b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/src/service.dart
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ class Service {
final router = Router();

router.post('/api/v1/actors/actions', (Request request) async {
List<int> byteBody = await request.read().first;
List<int> bodyBuffer = await request.read().first;

ActorInvocation actorInvocationRequest =
ActorInvocation.fromBuffer(byteBody);
ActorInvocation.fromBuffer(bodyBuffer);

_logger.d("Received Actor Invocation Request: $actorInvocationRequest");

Expand Down

0 comments on commit 4d3a4b0

Please sign in to comment.