🔨」 fix: fixed issue with parsing not working properly

This commit is contained in:
2025-08-16 19:18:09 +02:00
parent b548965d2e
commit ac8e8638e9
3 changed files with 25 additions and 7 deletions

View File

@ -72,7 +72,7 @@ void print_stats(void) {
bool check_for_count(options_t opt) {
if (opt.count == -1)
return false;
if (tx_count > opt.count)
if (tx_count >= opt.count)
return true;
return false;
}