mirror of https://gitlab.com/bashrc2/epicyon
Check if already a follower
parent
7e38cac3b7
commit
32127cae18
|
@ -309,6 +309,15 @@ def storeFollowRequest(baseDir: str, \
|
||||||
if ':' not in domain:
|
if ':' not in domain:
|
||||||
approveHandle=nickname+'@'+domain+':'+str(fromPort)
|
approveHandle=nickname+'@'+domain+':'+str(fromPort)
|
||||||
|
|
||||||
|
followersFilename=accountsDir+'/followers.txt'
|
||||||
|
if os.path.isfile(followersFilename):
|
||||||
|
if approveHandle in open(followersFilename).read():
|
||||||
|
if debug:
|
||||||
|
print('DEBUG: '+ \
|
||||||
|
nicknameToFollow+'@'+domainToFollow+ \
|
||||||
|
' already following '+approveHandle)
|
||||||
|
return True
|
||||||
|
|
||||||
# add to a file which contains a list of requests
|
# add to a file which contains a list of requests
|
||||||
approveFollowsFilename=accountsDir+'/followrequests.txt'
|
approveFollowsFilename=accountsDir+'/followrequests.txt'
|
||||||
if os.path.isfile(approveFollowsFilename):
|
if os.path.isfile(approveFollowsFilename):
|
||||||
|
|
Loading…
Reference in New Issue