Skip to content

Commit bc18fc4

Browse files
JdbyeNoppesTheFolf
authored andcommitted
Fix compile error
1 parent 7c489ab commit bc18fc4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

E621Client/Area/Note/E621Client.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public partial class E621Client
2727
request
2828
.AuthenticatedIfPossible(this)
2929
.SetQueryParam("limit", limit)
30-
.SetQueryParam("search[is_active]", activeOnly?.ToString().ToLower() ?? null)
30+
.SetQueryParam("search[is_active]", isActive?.ToString().ToLower() ?? null)
3131
.SetQueryParam("search[post_id]", string.Join(',', postIds))
3232
.GetJsonAsync(token => token.ToObject<ICollection<Note>>()));
3333
#pragma warning restore CS8621 // Nullability of reference types in return type doesn't match the target delegate (possibly because of nullability attributes).

0 commit comments

Comments
 (0)