Skip to content

Commit

Permalink
Support query that don't have ContinuationToken
Browse files Browse the repository at this point in the history
  • Loading branch information
sachabruttin committed Jun 30, 2022
1 parent 698533a commit 21d71b5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public static class FeedResponseExtensions
{
return feedResponse.ContinuationToken;
}
catch (ArgumentException ex) when (ex.Message == "Continuation token is not supported for queries with GROUP BY. Do not use FeedResponse.ResponseContinuation or remove the GROUP BY from the query.")
catch
{
// Silently catch exception
return null;
Expand Down

0 comments on commit 21d71b5

Please sign in to comment.