Skip to content

Commit

Permalink
Fix nullability of generated ReducerEventFromDbEvent
Browse files Browse the repository at this point in the history
  • Loading branch information
RReverser committed Jun 5, 2024
1 parent 8a2737c commit d0a1a44
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ protected SpacetimeDBClient()

public static readonly SpacetimeDBClient instance = new();

protected override ReducerEvent? ReducerEventFromDbEvent(ClientApi.Event dbEvent)
protected override ReducerEvent ReducerEventFromDbEvent(ClientApi.Event dbEvent)
{
var argBytes = dbEvent.FunctionCall.ArgBytes;
IReducerArgs? args = dbEvent.FunctionCall.Reducer switch {
Expand Down

0 comments on commit d0a1a44

Please sign in to comment.