Fix inactive message string

This commit is contained in:
Gonçalo Valério 2023-01-01 21:15:01 +00:00
parent 6271ef4157
commit 303dd5208e
Signed by: dethos
GPG Key ID: DF557F2BDCC2445E
2 changed files with 4 additions and 4 deletions

View File

@ -25,10 +25,10 @@ Expected output:
```
Paste API Key here:
Found 171 users. Checking...
veracrypt (https://mastodon.social/@veracrypt) seems to inactive
veracrypt (https://mastodon.social/@veracrypt) seems to be inactive
...
fsf (https://status.fsf.org/fsf) seems to inactive
gnome (https://quitter.no/gnome) seems to inactive
fsf (https://status.fsf.org/fsf) seems to be inactive
gnome (https://quitter.no/gnome) seems to be inactive
38 of them seem to be inactive for at least 180 days
```

View File

@ -111,7 +111,7 @@ fn main() {
if user.is_active(*days) {
return 0;
} else {
println!("{} ({}) seems to inactive", user.username, user.url);
println!("{} ({}) seems to be inactive", user.username, user.url);
return 1;
}
})