ping: remove seconds
Some checks failed
ci/woodpecker/cron/flake-lock-update Pipeline failed

This commit is contained in:
notohh 2024-08-12 04:25:05 -04:00
parent fe87b3e23e
commit f6646aea63
Signed by: notohh
GPG key ID: BD47506D475EE86D

View file

@ -30,8 +30,8 @@ pub async fn ping_command(m: &PrivmsgMessage, c: &TwitchClient) -> Result<(), Bo
let host = System::name().unwrap();
let s = format!(
"🚀Pong! | ↑: {}d {}h {}m {}s | Host: {} | Mem: {:.2} MB",
uptime_days, remaining_hours, remaining_minutes, remaining_seconds, host, mem
"🚀Pong! | ↑: {}d {}h {}m | Host: {} | Mem: {:.2} MB",
uptime_days, remaining_hours, remaining_minutes, host, mem
);
c.twitch_client.say(channel, s).await?;