itchio / butler

🎩 Command-line itch.io helper
MIT License
745 stars 52 forks source link

butlerd: nil slices should serialize to `[]`, not `null` #203

Closed fasterthanlime closed 4 years ago

fasterthanlime commented 4 years ago

Due to unfortunate decisions in the design of the Go standard library, queries like

r Profile.List

return something like profiles: null, instead of profiles: [].

This is not the API I want to expose.

fasterthanlime commented 4 years ago

After the fix:

image