tuskyapp / Tusky

An Android client for the microblogging server Mastodon
https://tusky.app
GNU General Public License v3.0
2.49k stars 389 forks source link

remove wrong statuses attribute from Announcement model #4699

Closed connyduck closed 1 month ago

connyduck commented 1 month ago

https://docs.joinmastodon.org/entities/Announcement/

The statuses in this model are not full statuses but we expect them, so parsing a response that contains one fails. com.squareup.moshi.JsonDataException: Required value 'account' missing at $[0].statuses[1]

Since we don't even use the attribute, we can just remove it to fix the bug.

Closes #4696