rsocket / rsocket-dart

Dart implementation of RSocket
Apache License 2.0
31 stars 25 forks source link

Bugfix for "Payload.fromJson" factory method #29

Open stephanfeb opened 1 year ago

stephanfeb commented 1 year ago

BugFix. Payload data is populated with metadata

Motivation:

It's a bug.

Instead of assigning payload data to the Payload.data field, it is instead incorrectly assigned to the metadata field.

Modifications:

Corrected the field assignment.

Result:

The payload data is now assigned to the correct field.