fix filter.Kind pointer type mismatch.

This commit is contained in:
fiatjaf 2021-02-21 23:46:46 -03:00
parent d4aa16f38a
commit 1ff313e1a4

View File

@ -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)
}