We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6dccff1 commit aba3a2eCopy full SHA for aba3a2e
src/stream-net/Reactions.cs
@@ -228,12 +228,7 @@ public async Task<Reaction> Get(string reactionID)
228
}
229
230
public async Task<IEnumerable<Reaction>> Filter(ReactionFiltering filtering, ReactionPagination pagination)
231
- {
232
- //var urlPath = pagination.GetPath();
233
- //var request = this._client.BuildJWTAppRequest($"reaction/{urlPath}", HttpMethod.GET);
234
- //filtering.Apply(request);
235
-
236
- //var response = await this._client.MakeRequest(request);
+ {
237
var response = await FilterHelper(filtering, pagination);
238
239
if (response.StatusCode == System.Net.HttpStatusCode.OK)
0 commit comments