Fix where we pull the login name from

This commit is contained in:
Reid 'arrdem' McKenzie 2023-10-03 14:39:58 -06:00
parent d497f16644
commit 5ed3669dfe

View file

@ -232,7 +232,7 @@ def maintain(config_path: Path, schedule: timedelta):
):
_resolve(notif, "Unengaged issue closed")
if user["author"]["login"] in author_shitlist:
if issue["user"]["login"] in author_shitlist:
_resolve(notif, "Ignoring issue by author")
while True: