Anatoly Ivanov

Results 5 comments of Anatoly Ivanov

This actually worked well for me. Any reason why is this not merged?

Yes, after reviewing https_wget.c code, it does appear that you guys went on a quite a journey through a rabbit hole to make it work. [Curl-multy API](https://curl.se/libcurl/c/multi-app.html) seems like an...

Take a look at [this implementation](https://github.com/iAnatoly/PokemonGo.SimpleBot/blob/master/PokemonGo.SimpleBot/Actions/Evolution.cs), namely at EvolveAllPokemonWithEnoughCandy: ``` csharp var pokemonSettings = await GetPokemonSettings(); var settings = pokemonSettings.FirstOrDefault(x => x.PokemonId == pokemon.PokemonId); var candy = pokemonCandy.FirstOrDefault(c => c.Candy.FamilyId...

I personally recommend running Homebridge plugins as separate instances in docker containers. That provides sufficient isolation from other plugins misbehaving. I use this particular docker image: https://github.com/oznu/docker-homebridge. Please let me...

@PaRkThEcAr Yes, it is a workaround rather than a permanent fix. Feel free to submit a PR once you come up with a permanent fix for this issue. Docker container...