Supporting Wifi on a Fenix5x

Hi there,

First, I'd like to thank Garmin for providing developers with the Wifi Sync option.

However, has anyone tried supporting wifi sync on a fenix5x?  One of my users notified me that although his watch (fenix5x) has wifi, my app crashes when it tries to launch the wifi sync delegate.

I ran some analytics, and can verify that the fenix5x returns the following values for these code blocks:

has_startsync = (Communications has :startSync);
if(System.getDeviceSettings().monkeyVersion[0] >= 3) { 
	var info = System.getDeviceSettings().connectionInfo;
	if(info[:wifi] != null) {
		has_wifi = true;
	}
}

//has_startsync = false
//has_wifi = true

Please note, this ONLY occurs on physical devices, the sim returns False to both values

How in the world is this possible? Could this be a ConnectIQ bug?

Thanks for your help!

Lance