mirror of
https://github.com/fiatjaf/khatru.git
synced 2025-04-04 01:48:18 +02:00
fix filter.Kind pointer type mismatch.
This commit is contained in:
parent
d4aa16f38a
commit
1ff313e1a4
2
query.go
2
query.go
@ -24,7 +24,7 @@ func queryEvents(filter *filter.EventFilter) (events []event.Event, err error) {
|
||||
params = append(params, filter.Author)
|
||||
}
|
||||
|
||||
if filter.Kind != 0 {
|
||||
if filter.Kind != nil && *filter.Kind != 0 {
|
||||
conditions = append(conditions, "kind = ?")
|
||||
params = append(params, filter.Kind)
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user