diff --git a/apps/ios/boot.js b/apps/ios/boot.js index 1054a735f..32fda1380 100644 --- a/apps/ios/boot.js +++ b/apps/ios/boot.js @@ -180,6 +180,7 @@ E.on('notify',msg=>{ let weatherEvent = { t: "weather", temp: d.temp, + feels: d.feels, hi: d.hi, lo: d.lo, hum: d.hum, @@ -192,7 +193,7 @@ E.on('notify',msg=>{ loc: d.loc } // Convert string fields to numbers for iOS weather shortcut - const numFields = ['code', 'wdir', 'temp', 'hi', 'lo', 'hum', 'wind', 'uv', 'rain']; + const numFields = ['code', 'wdir', 'temp','feels', 'hi', 'lo', 'hum', 'wind', 'uv', 'rain']; numFields.forEach(field => { if (weatherEvent[field] != null) weatherEvent[field] = +weatherEvent[field]; }); @@ -345,4 +346,4 @@ E.emit("ANCS", { } else { Bangle.ancsConvertUTF8 = E.asUTF8; } -} \ No newline at end of file +}