Connecting to blynk-cloud.com:8441

hi
i am new to blynk
i got this example code for the esp8266 and every time i upload it and open the serial moniter it says

[1110310] NTP time: Tue Feb  5 16:52:04 2019
[1110310] Connecting to blynk-cloud.com:8441

and that just repeats for ever. on the blynk app i cant connect to my device.
i am using this code from the ESP8266_Standalone_SSL:

#define BLYNK_PRINT Serial
#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266_SSL.h>

char auth[] = "xxxxxxxxxxxxxxx";
char ssid[] = "xxxxx";
char pass[] = "xxxxxx";

void setup()
{
  Serial.begin(9600);
  Blynk.begin(auth, ssid, pass);
}

void loop()
{
  Blynk.run();
}

i am using an esp8266 on the arduino IDE 1.8.8 windows store version.

Check BlynkConfig.h in the library and write the line

#define BLYNK_DEFAULT_PORT_SSL 8441

to

#define BLYNK_DEFAULT_PORT_SSL 443

save and build again.
That’s a known issue.

srry i already fixed it tyy for the fast reply