Skip to content

Commit

Permalink
Apply Discord RPC changes regardless of user's status
Browse files Browse the repository at this point in the history
  • Loading branch information
jvyden committed Feb 24, 2024
1 parent c93965a commit 8934cf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osu.Desktop/DiscordRichPresence.cs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ private void updateStatus()
return;
}

if (status.Value == UserStatus.Online && activity.Value != null)
if (activity.Value != null)
{
bool hideIdentifiableInformation = privacyMode.Value == DiscordRichPresenceMode.Limited;
presence.State = truncate(activity.Value.GetStatus(hideIdentifiableInformation));
Expand Down

0 comments on commit 8934cf3

Please sign in to comment.