Skip to content

Commit

Permalink
Merge pull request #122 from pigwing/master
Browse files Browse the repository at this point in the history
fix: add missing deserialize  parameters
  • Loading branch information
neuecc authored Apr 8, 2024
2 parents 6160c75 + 75c19d4 commit 9ed0b76
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 9ed0b76

Please sign in to comment.