ARM HTTPSecureSocket Hangs/Returns No Data

The following code when complied with 2018r1,2018r2 versions of Xojo hangs and fails to return any data when complied for ARM no issue when compiled for x86. When the same code unchanged is compiled in v 2017R2.1 for ARM it works as expected is this a bug or did something change with HTTPSecureSocket and ARM?

 dim http_data as string
  dim http as new HTTPSecureSocket
  http.Secure=true
  http.ConnectionType=SSLSocket.SSLv23
 #if targetarm then
    http_data=http.get("https://URL",20)
  #else
    http_data=http.get("https://URL",20)
  #endif

Just compiled this with 2018r3 and it works, could not find anything in the release notes that pointed to a fix though but it works.