We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a5ef0f commit 33d002aCopy full SHA for 33d002a
1 file changed
osu.NET/Endpoints/Comments.cs
@@ -26,6 +26,7 @@ public partial class OsuApiClient
26
/// <param name="cursor">Optional. The cursor for fetching further comments.</param>
27
/// <param name="cancellationToken">Optional. The cancellation token for aborting the request.</param>
28
/// <returns>A bundle with comments.</returns>
29
+ [CanReturnApiError()]
30
public async Task<ApiResult<CommentsBundle>> GetCommentsAsync(int? after = null, CommentableType? type = null, int? commentableId = null,
31
int? parentId = null, CommentSortType? sort = null, CommentsCursor? cursor = null, CancellationToken? cancellationToken = null)
32
=> await GetAsync<CommentsBundle>("comments", cancellationToken,
0 commit comments