Merge pull request #512 from Eneuman/dev

Removed duplicate string to byte conversion
This commit is contained in:
Eduard Tomàs 2018-02-13 15:58:03 +01:00 committed by GitHub
commit aa2b8ea576
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -47,7 +47,7 @@
var message = new Message
{
MessageId = Guid.NewGuid().ToString(),
Body = Encoding.UTF8.GetBytes(jsonMessage),
Body = body,
Label = eventName,
};