diff --git a/interactions/api/models/presence.py b/interactions/api/models/presence.py index 0f874d34d..8ab7f792a 100644 --- a/interactions/api/models/presence.py +++ b/interactions/api/models/presence.py @@ -209,9 +209,9 @@ def __init__(self, **kwargs): ) if self.activities: self._json["activities"] = [activity._json for activity in self.activities] - if self.status == "idle" and not self._json.get("since"): + if not self._json.get("since"): # If since is not provided by the developer... - self.since = int(time.time() * 1000) + self.since = int(time.time() * 1000) if self.status == "idle" else 0 self._json["since"] = self.since if not self._json.get("afk"): self._json["afk"] = False