mirror of
https://github.com/System-End/Vencord.git
synced 2026-04-19 22:05:11 +00:00
LastFmRPC: ignore custom status (#3814)
This commit is contained in:
parent
b07db6c500
commit
3ea80c254a
1 changed files with 1 additions and 1 deletions
|
|
@ -243,7 +243,7 @@ export default definePlugin({
|
|||
|
||||
async getActivity(): Promise<Activity | null> {
|
||||
if (settings.store.hideWithActivity) {
|
||||
if (PresenceStore.getActivities(AuthenticationStore.getId()).some(a => a.application_id !== DISCORD_APP_ID)) {
|
||||
if (PresenceStore.getActivities(AuthenticationStore.getId()).some(a => a.application_id !== DISCORD_APP_ID && a.type !== ActivityType.CUSTOM_STATUS)) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue