chat controller: fix method name of getQp

This commit is contained in:
Adam
2019-01-25 17:27:19 -05:00
parent 0674537c33
commit 9c4df28f2b

View File

@@ -97,7 +97,7 @@ public class ChatController
}
@GetMapping("/qp")
public int getKc(@RequestParam String name)
public int getQp(@RequestParam String name)
{
Integer kc = chatService.getQp(name);
if (kc == null)