fix remaining hours
Some checks failed
ci/woodpecker/cron/flake-lock-update Pipeline failed

This commit is contained in:
notohh 2024-07-19 16:28:06 -04:00
parent d5d1446777
commit dc49373ad5
Signed by: notohh
GPG key ID: BD47506D475EE86D

View file

@ -25,7 +25,7 @@ pub async fn ping_command(m: &PrivmsgMessage, c: &TwitchClient) -> Result<(), Bo
let remaining_seconds = uptime_seconds % 60;
let remaining_minutes = uptime_minutes % 60;
let remaining_hours = uptime_hours % 60;
let remaining_hours = uptime_hours % 24;
let host = System::name().unwrap();