Skip to content

Commit 0866722

Browse files
committedAug 29, 2020
LunaChat v3.0.12 : Fixed issue #203
1 parent a58830f commit 0866722

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/main/java/com/github/ucchyocean/lc3/command/ListCommand.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public boolean runCommand(
8383
ChannelMember sender, String label, String[] args) {
8484

8585
int page = 1;
86-
if ( args.length >= 2 && args[1].matches("[0-9]") ) {
86+
if ( args.length >= 2 && args[1].matches("[0-9]+") ) {
8787
page = Integer.parseInt(args[1]);
8888
}
8989

0 commit comments

Comments
 (0)
Please sign in to comment.