Skip to content

Commit

Permalink
Merge branch 'main' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
carlodrift committed Oct 1, 2024
2 parents 64ceeb1 + 517c905 commit 4835cfe
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>net.clementraynaud</groupId>
<artifactId>skoice</artifactId>
<version>3.2.1</version>
<version>3.2.2</version>
<packaging>jar</packaging>

<name>skoice</name>
Expand All @@ -22,7 +22,7 @@
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>5.11.0</version>
<version>5.11.1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down Expand Up @@ -222,7 +222,7 @@
<dependency>
<groupId>org.bstats</groupId>
<artifactId>bstats-bukkit</artifactId>
<version>3.0.3</version>
<version>3.1.0</version>
</dependency>
<dependency>
<groupId>net.dv8tion</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ private void setDefaultFailure() {
|| error.getErrorCode() == ErrorResponse.MFA_NOT_ENABLED.getCode()) {
this.plugin.getListenerManager().update();
return;
} else if (error.getErrorResponse() == ErrorResponse.INTERACTION_ALREADY_ACKNOWLEDGED
|| error.getErrorResponse() == ErrorResponse.UNKNOWN_INTERACTION) {
}
if (error.getErrorCode() == ErrorResponse.INTERACTION_ALREADY_ACKNOWLEDGED.getCode() || (error.getErrorCode() == ErrorResponse.UNKNOWN_INTERACTION.getCode() && error.getMessage().startsWith("10062: Failed to acknowledge this interaction, this can be due to 2 reasons"))) {
this.plugin.log(Level.WARNING, "logger.warning.shared-bot");
return;
}
Expand Down

0 comments on commit 4835cfe

Please sign in to comment.