This repository was archived by the owner on Feb 9, 2022. It is now read-only.

Description
Describe the bug
Custom blynkport from Credentials.h is not being used, instead it looks like the hard coded value is.
This work fine for ESP8266 but not ESP32. The code looks different.
Steps to Reproduce
Blynk port changed to 8082 in Credentials.h
Expected behavior
Blynk should connect to on 8082.
Actual behavior
Blynk tries to connect to port 8080.
`
//existing line 2068 in BlynkSimpleEsp32_Async_WM.h
BlynkESP32_WM_config.Blynk_Creds[i].blynk_server, BLYNK_SERVER_HARDWARE_PORT);
//works if I change to this
BlynkESP32_WM_config.Blynk_Creds[i].blynk_server, BlynkESP32_WM_config.blynk_port);`
The above change seems consistent with the ESP8266 file which does work properly.