Skip to content

Commit

Permalink
fixed issues with URLs in the wanted list
Browse files Browse the repository at this point in the history
  • Loading branch information
beaston02 authored Aug 12, 2017
1 parent 677ccc8 commit 693dca0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ChaturbateRecorder.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def postProcess():
online = online.decode('utf-8').splitlines()
f = open(wishlist, 'r')
for theModel in list(set(f.readlines())):
theModel = list(filter(None, theModel.split('/')))[-1].lower().strip()
theModel = list(filter(None, theModel.split('chaturbate.com/')))[-1].lower().strip().replace('/', '')
if theModel in online\
and theModel not in recording:
thread = Thread(target=startRecording, args=(theModel,))
Expand Down

0 comments on commit 693dca0

Please sign in to comment.