Skip to content

Commit

Permalink
fix wrong return in loop
Browse files Browse the repository at this point in the history
  • Loading branch information
mpgn committed Jul 2, 2024
1 parent 9823680 commit b86f675
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nxc/modules/laps.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def on_login(self, context, connection):
data = d.run()
except Exception as e:
context.log.fail(str(e))
return
continue
r = json.loads(data)
laps_computers.append((str(values["samaccountname"]), r["n"], str(r["p"])))
elif "mslaps-password" in values:
Expand Down

0 comments on commit b86f675

Please sign in to comment.