Also note, that `listOf(ids)` is not what you want...
# announcements
o
Also note, that
listOf(ids)
is not what you want. It’s list of arrays. Use
ids.asList()
instead, also less allocs.
🙇 1