Timo

Results 10 comments of Timo

Did you run the discovery command? Is there a `config.json` in the directory you're running the command from? And if so, what's its content? Try deleting `config.json` (if it exists)...

The "HiSense Air Conditioners" integration for Home Assistant will initially discover all air conditioners using the configured apps and subsequently report them to HA. However, it will not detect new...

Glad I could help 🙂 If your issue is resolved, please consider closing it.

Hello everybody and first of all: thank you for providing evcc as this wonderful Home Assistant add-on! 👍 A few days ago I tried to install the add-on by following...

This was requested on the main project as well: https://github.com/evcc-io/evcc/discussions/11256

Hey @HeXiaoShu, you omitted a crucial part of our sample security configuration: ``` http.addFilterAfter(new CustomCsrfFilter(), BasicAuthenticationFilter.class) .csrf((csrf) -> csrf.csrfTokenRepository(CookieCsrfTokenRepository.withHttpOnlyFalse()) .csrfTokenRequestHandler(new CsrfTokenRequestAttributeHandler()) .ignoringRequestMatchers( new AntPathRequestMatcher(this.adminServer.path("/instances"), POST.toString()), new AntPathRequestMatcher(this.adminServer.path("/instances/*"), DELETE.toString()), new AntPathRequestMatcher(this.adminServer.path("/actuator/**"))...

The root cause is this change in Spring Boot 3.5.0: > RestClientAutoConfiguration now applies for reactive web applications that are using virtual threads and have a applicationTaskExecutor bean. (see [Spring...

So, if I don't submit a PR, this issue will just be closed? 🤔

I can confirm that enabling method parameters metadata via the `-java-parameters` flag for the Kotlin compiler fixes the issue @sam0r040 described. Thanks!