Skip to content

Commit

Permalink
Sometimes the server returns different message.
Browse files Browse the repository at this point in the history
  • Loading branch information
felipelalli committed Jul 6, 2022
1 parent cf8a740 commit f053cbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/BitcoinWot/src/info/walltime/bitcoinwot/IrcBot.java
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ protected void onNotice(String sourceNick, String sourceLogin, String sourceHost
System.out.println("Notice: " + sourceNick + ": " + notice);
}

if (notice.contains("is not registered")) {
if (notice.contains("is not registered") || notice.contains("isn\'t registered")) {

if (!BitcoinWot.REGISTERING.get()) {
JOptionPane.showMessageDialog(null,
Expand Down

0 comments on commit f053cbe

Please sign in to comment.