Skip to content

Commit 84ba88c

Browse files
committed
Fix default updater not working
This was caused by the Discord Integration using CUSTOM_STATUS as activity, which is not supported by JDA
1 parent ae99f8c commit 84ba88c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/launcher/java/com/mcmoddev/relauncher/DefaultJarUpdater.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ private void setDiscordActivity(boolean processRunning) {
134134
public void update(final Release release) throws Exception {
135135
final var discordIntegration = Main.getDiscordIntegration();
136136
if (discordIntegration != null) {
137-
discordIntegration.setActivity(DiscordIntegration.ActivityType.CUSTOM_STATUS, "Updating a process \uD83D\uDD04");
137+
discordIntegration.setActivity(DiscordIntegration.ActivityType.PLAYING, "the updating game \uD83D\uDD04");
138138
}
139139

140140
final var parent = jarPath.getParent();

0 commit comments

Comments
 (0)