Skip to content

Commit

Permalink
Merge pull request #17 from srockw/fix_linuc_rpc
Browse files Browse the repository at this point in the history
Fix DiscordRPC crashing on some linux distributions
  • Loading branch information
kurrycat authored Jun 18, 2023
2 parents afb48d1 + afe2a5a commit 6652f0e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ private static void disableRPC() {
private static void createCore() {
try (CreateParams params = new CreateParams()) {
params.setClientID(CLIENT_ID);
params.setFlags(CreateParams.getDefaultFlags());
params.setFlags(CreateParams.Flags.NO_REQUIRE_DISCORD);

try {
core = new Core(params);
Expand Down

0 comments on commit 6652f0e

Please sign in to comment.