mirror of https://github.com/Soyandroid/aqua
[ongeki] Server endpoint url change
parent
99ee6d9df2
commit
283b70a243
|
@ -72,8 +72,10 @@ public class AllNetController {
|
|||
return "http://" + HOST + ":" + PORT + "/";
|
||||
case "SBZV":
|
||||
return "http://" + HOST + ":" + PORT + "/diva/";
|
||||
case "SDDT":
|
||||
return "http://" + HOST + ":" + PORT + "/OngekiServlet/";
|
||||
default:
|
||||
return "http://" + HOST + ":" + PORT + "/ongeki/";
|
||||
return "http://" + HOST + ":" + PORT + "/";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@ public class CompressionFilter extends OncePerRequestFilter {
|
|||
public CompressionFilter() {
|
||||
filterList = new ArrayList<>();
|
||||
filterList.add("/ChuniServlet");
|
||||
filterList.add("/ongeki");
|
||||
filterList.add("/OngekiServlet");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -15,7 +15,7 @@ import java.util.Map;
|
|||
* @author samnyan (privateamusement@protonmail.com)
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("ongeki")
|
||||
@RequestMapping("OngekiServlet")
|
||||
public class OngekiController {
|
||||
|
||||
private final GetGameEventHandler getGameEventHandler;
|
||||
|
|
Loading…
Reference in New Issue