Fixed formatting bug.
All checks were successful
Pack and Push NuGet Package / publish (push) Successful in 43s

This commit is contained in:
2025-07-05 04:27:42 +02:00
parent 964fb73c2f
commit 4bccc081b4

View File

@ -103,8 +103,8 @@ namespace MessengerApi
messages.Add(new InboxMessage
{
Id = item["id"].GetValue<Guid>(),
Payload = item["payload"].ToJsonString(),
PayloadType = item["payloadType"].ToJsonString(),
Payload = item["payload"].GetValue<string>(),
PayloadType = item["payloadType"].GetValue<string>(),
Sender = item["sender"].GetValue<Guid>(),
});
}