filter invalid skylinks

This commit is contained in:
Karol Wypchlo 2021-03-02 13:44:27 +01:00
parent 4f055528ca
commit 6186d7439f
1 changed files with 1 additions and 1 deletions

View File

@ -49,8 +49,8 @@ async def block_skylinks_from_airtable():
skylinks = [skylink for skylink in skylinks if re.search("^[a-zA-Z0-9_-]{46}$", skylink)]
if len(skylinks_returned) != len(skylinks):
message = (skylinks_returned - len(skylinks)) + " of the skylinks returned from Airtable are not valid"
invalid_skylinks = [str(skylink) for skylink in list(set(skylinks_returned) - set(skylinks))]
message = str(len(invalid_skylinks)) + " of the skylinks returned from Airtable are not valid"
print(message) or await send_msg(client, message, file=("\n".join(invalid_skylinks)))
apipassword = exec("docker exec sia cat /sia-data/apipassword")