| Summary: | Incorrect return when list studentJoinedEvent | ||
|---|---|---|---|
| Product: | Event Management System | Reporter: | mankitse3-c |
| Component: | Backend | Assignee: | mankitse3-c |
| Status: | CONFIRMED --- | ||
| Severity: | enhancement | ||
| Priority: | --- | ||
| Version: | 1 | ||
| Hardware: | PC | ||
| OS: | Windows | ||
|
Description
mankitse3-c
2020-11-10 23:21:02 HKT
if(cmdParts[3] == "all") {
..
}
else if(cmdParts[3] == "pending") {
..
}
else if(cmdParts[3] == "end") {
..
}
change to
if(cmdParts[3].equals("all")) {
..
}
else if(cmdParts[3].equals("pending")) {
..
}
else if(cmdParts[3].equals("end")) {
..
}
|