Robin Friedli

Results 47 comments of Robin Friedli

I decided against that restriction because people outside the voice chat using these comands is a valid use case. I could add a guild property and a command interceptor to...

You could disable auto pause using the property command but the bot would still leave after being alone for an hour when the audio playback is cleanup up but you...

No, the links provided by the queue or search commands (i.e. the paths configured in httpHandlers.xml) are legacy botify 1 http handlers. These run on the port specified by the...

No, index.html ends up in `/index.html` in the classpath root (BOOT-INF/classes/index.html in the jar file). All files in `src/main/java`, `src/main/resources` (default for maven / gradle) and `src/main/webapp` (since it is...

Botify uses spring boot, not plain spring. Spring boot provides auto configuration for those things and usage of the @EnableWebMvn annotation would disable the auto config in favour of traditional...

Have you tried setting a breakpoint in `WebMvcAutoConfiguration$EnableWebMvcConfiguration#getWelcomePage` to see what that returns?

Did you get the chance to try it out?

Oh you're using Docker? That is indeed something I haven't tested but since I plan and distributing botify 2 as a Docker image it is something I'll look into either...

My current workaround is to do the following, which also seems to work ```groovy def noneMatch = list.stream().noneMatch({s -> s.indexOf((int) somec) >= 0}) while (noneMatch) { somec++ noneMatch = list.stream().noneMatch({s...