Fixed formatting bug.
All checks were successful
Pack and Push NuGet Package / publish (push) Successful in 43s
All checks were successful
Pack and Push NuGet Package / publish (push) Successful in 43s
This commit is contained in:
@ -103,8 +103,8 @@ namespace MessengerApi
|
|||||||
messages.Add(new InboxMessage
|
messages.Add(new InboxMessage
|
||||||
{
|
{
|
||||||
Id = item["id"].GetValue<Guid>(),
|
Id = item["id"].GetValue<Guid>(),
|
||||||
Payload = item["payload"].ToJsonString(),
|
Payload = item["payload"].GetValue<string>(),
|
||||||
PayloadType = item["payloadType"].ToJsonString(),
|
PayloadType = item["payloadType"].GetValue<string>(),
|
||||||
Sender = item["sender"].GetValue<Guid>(),
|
Sender = item["sender"].GetValue<Guid>(),
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user