Skip to content

Commit

Permalink
fix: add missing deserialize parameters
Browse files Browse the repository at this point in the history
MessagePackSerializer.Deserialize<T>(value, options);
  • Loading branch information
pigwing committed Apr 8, 2024
1 parent 6160c75 commit 75c19d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MessagePipe.Redis/MessagePackRedisSerializer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public byte[] Serialize<T>(T value)

public T Deserialize<T>(byte[] value)
{
return MessagePackSerializer.Deserialize<T>(value);
return MessagePackSerializer.Deserialize<T>(value, options);
}
}
}

0 comments on commit 75c19d4

Please sign in to comment.