Skip to content

Commit

Permalink
Fix the wording of one of the comments
Browse files Browse the repository at this point in the history
  • Loading branch information
PF2M committed May 27, 2018
1 parent f83d63c commit a4ebaf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion closedverse_main/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ def has_freedom(self):
return self.profile('let_freedom')
# This is the coolest one
def online_status(self, force=False):
# Okay so this returns True if the user's offline, 2 if they're AFK, False if they're offline and None if they hide it
# Okay so this returns True if the user's online, 2 if they're AFK, False if they're offline and None if they hide it
if self.hide_online:
return None
if (timezone.now() - timedelta(seconds=50)) > self.last_login:
Expand Down

0 comments on commit a4ebaf3

Please sign in to comment.