diff --git a/pwnagotchi/plugins/default/grid.py b/pwnagotchi/plugins/default/grid.py index 2574d57..0dd76cc 100644 --- a/pwnagotchi/plugins/default/grid.py +++ b/pwnagotchi/plugins/default/grid.py @@ -54,7 +54,7 @@ def is_excluded(what): for skip in OPTIONS['exclude']: skip = skip.lower() what = what.lower() - if skip in what or skip.replace(':', ':') in what: + if skip in what or skip.replace(':', '') in what: return True return False