Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
RReverser committed Jun 6, 2024
1 parent 9b93905 commit bb4888b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SpacetimeDBClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,7 @@ public async Task<T[]> OneOffQuery<T>(string query)

// unsanitized here, but writes will be prevented serverside.
// the best they can do is send multiple selects, which will just result in them getting no data back.
string queryString = $"SELECT * FROM {type.Name} ${query}";
string queryString = $"SELECT * FROM {type.Name} {query}";

var requestId = stats.OneOffRequestTracker.StartTrackingRequest();
webSocket.Send(new Message
Expand Down

0 comments on commit bb4888b

Please sign in to comment.