forked from 0x2620/pandora
remove mail->country check, too esoteric
This commit is contained in:
parent
879d114995
commit
b515feb456
1 changed files with 1 additions and 8 deletions
|
@ -75,13 +75,6 @@ class SessionData(models.Model):
|
|||
except:
|
||||
self.location_sort = self.location = None
|
||||
pass
|
||||
if self.location == None and self.user and self.user.email:
|
||||
tld = self.user.email.split('.')[-1]
|
||||
if tld in ['edu', 'gov', 'mil']:
|
||||
tld = 'us'
|
||||
country = ox.get_country_name(tld)
|
||||
if country:
|
||||
self.location_sort = self.location = country
|
||||
|
||||
def save(self, *args, **kwargs):
|
||||
if self.user:
|
||||
|
|
Loading…
Reference in a new issue