altoslib: add missing manufacturer parsing for AltosConfigData
authorMike Beattie <mike@ethernal.org>
Fri, 31 Aug 2012 05:53:53 +0000 (17:53 +1200)
committerMike Beattie <mike@ethernal.org>
Fri, 31 Aug 2012 05:53:53 +0000 (17:53 +1200)
Signed-off-by: Mike Beattie <mike@ethernal.org>
altoslib/AltosConfigData.java

index ecc2d0aa5f0210eea02972320b7f863dbd3c3e8f..c143036c1a9e13ecc05837631ebb66d7b42a2966 100644 (file)
@@ -170,6 +170,7 @@ public class AltosConfigData implements Iterable<String> {
                        try { callsign = get_string(line, "Callsign:"); } catch (Exception e) {}
                        try { version = get_string(line,"software-version"); } catch (Exception e) {}
                        try { product = get_string(line,"product"); } catch (Exception e) {}
+                       try { manufacturer = get_string(line,"manufacturer"); } catch (Exception e) {}
 
                        try { get_int(line, "flight"); stored_flight++; }  catch (Exception e) {}
                        try { storage_size = get_int(line, "Storage size:"); } catch (Exception e) {}