Using the API to update a topic title. The endpoint returns 200 with the topic object, but the title in the response is still the old title. Refreshing the page confirms it didn't actually change.
curl -X PATCH https://our-slug.outpost.ninja/api/community/our-slug/topics/abc123 \
-H "Authorization: Bearer ..." \
-H "Content-Type: application/json" \
-d '{"title": "Updated Title"}'
Response body has the old title. PUT works fine though — is PATCH not fully implemented?