Skip to content
This repository was archived by the owner on Feb 8, 2023. It is now read-only.

Commit 08ab1be

Browse files
committed
fix pid byte
1 parent 479bce7 commit 08ab1be

File tree

1 file changed

+1
-1
lines changed
  • payload/Library/nudge/Resources

1 file changed

+1
-1
lines changed

payload/Library/nudge/Resources/nudge

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def nudge_already_loaded():
190190
current_pid = str(os.getpid())
191191
for line in status:
192192
if bytes(nudge_string, 'utf-8') in line:
193-
if current_pid in line:
193+
if bytes(current_pid, 'utf-8') in line:
194194
pass
195195
else:
196196
return True

0 commit comments

Comments
 (0)