diff --git a/CHANGELOG.md b/CHANGELOG.md index 999d1d59759e..b2228067c5f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 0.8.0-M4 + +## Fixes + +* Fixed the space in active threads get endpoint causing it to fail. + # 0.8.0-M3 ## Fixes diff --git a/rest/src/main/kotlin/route/Route.kt b/rest/src/main/kotlin/route/Route.kt index de94b9a197e7..e7c17856ddbf 100644 --- a/rest/src/main/kotlin/route/Route.kt +++ b/rest/src/main/kotlin/route/Route.kt @@ -745,7 +745,7 @@ sealed class Route( ) object ActiveThreadsGet : Route( HttpMethod.Get, - " /guilds/${GuildId}/threads/active", + "/guilds/${GuildId}/threads/active", ListThreadsResponse.serializer() )