diff --git a/assyst-core/src/rest/top_gg.rs b/assyst-core/src/rest/top_gg.rs index 20bc568..c0ae95f 100644 --- a/assyst-core/src/rest/top_gg.rs +++ b/assyst-core/src/rest/top_gg.rs @@ -9,13 +9,12 @@ static ROUTE: LazyLock = LazyLock::new(|| format!("https://top.gg/api/bo pub async fn post_top_gg_stats(assyst: ThreadSafeAssyst) -> anyhow::Result<()> { let guild_count = assyst.metrics_handler.guilds.get(); - let shard_count = assyst.shard_count; assyst .reqwest_client .post(&*ROUTE) .header("authorization", &CONFIG.authentication.top_gg_token) - .json(&json!({ "server_count": guild_count, "shard_count": shard_count, "shards": [] })) + .json(&json!({ "server_count": guild_count })) .send() .await? .error_for_status()?;