diff --git a/main.py b/main.py index 9abb0d8..6c2953b 100644 --- a/main.py +++ b/main.py @@ -195,7 +195,7 @@ def site_post(): for i in socials: # Set link to lowercase i['url'] = i['url'].lower() - if not i['url'].startswith('http'): + if not i['url'].startswith('http') and i['name'] != 'email': i['url'] = 'https://' + i['url']