meshtastic / Meshtastic-Android

Android application for Meshtastic
https://meshtastic.org
GNU General Public License v3.0
737 stars 212 forks source link

Fix lat/lng/alt config validation errors when position is null #1260

Closed djholt closed 2 months ago

djholt commented 2 months ago

This fixes persistent validation errors when setting fixed latitude, longitude and altitude when the Position object is null.

Root issue: state comparison always fails during error checking when passing a literal double or int value into EditTextPreference (in this case 0.0 for lat and lng, and 0 for altitude).

andrekir commented 2 months ago

good catch