mirror of
https://github.com/matrix-construct/construct
synced 2024-11-26 00:32:35 +01:00
ircd:Ⓜ️:filter: Use signed long limit value in tuples.
This commit is contained in:
parent
9c5b10fb61
commit
38d15a7f0c
1 changed files with 2 additions and 2 deletions
|
@ -28,7 +28,7 @@ namespace ircd::m
|
|||
struct ircd::m::event_filter
|
||||
:json::tuple
|
||||
<
|
||||
json::property<name::limit, uint>,
|
||||
json::property<name::limit, long>,
|
||||
json::property<name::types, json::array>,
|
||||
json::property<name::senders, json::array>,
|
||||
json::property<name::not_types, json::array>,
|
||||
|
@ -45,7 +45,7 @@ struct ircd::m::event_filter
|
|||
struct ircd::m::room_event_filter
|
||||
:json::tuple
|
||||
<
|
||||
json::property<name::limit, uint>,
|
||||
json::property<name::limit, long>,
|
||||
json::property<name::types, json::array>,
|
||||
json::property<name::rooms, json::array>,
|
||||
json::property<name::senders, json::array>,
|
||||
|
|
Loading…
Reference in a new issue