1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-06-26 06:50:07 +02:00

Bangle.js: Fix typo

This commit is contained in:
Martin Boonk 2023-05-18 14:43:57 +02:00 committed by José Rebelo
parent a57a8cc7ca
commit d4bcbc52fb
2 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ import nodomain.freeyourgadget.gadgetbridge.util.GB;
/**
* A static location manager, which keeps track of what providers are currently running. A notification is kept
* while there is at least one provider runnin.
* while there is at least one provider running.
*/
public class GBLocationManager {
private static final Logger LOG = LoggerFactory.getLogger(GBLocationManager.class);

View File

@ -967,7 +967,7 @@ public class BangleJSDeviceSupport extends AbstractBTLEDeviceSupport {
}
o.put("hdop", location.getAccuracy());
o.put("externalSource", true);
LOG.debug("Sending gps valu: " + o.toString());
LOG.debug("Sending gps value: " + o.toString());
uartTxJSON("gps", o);
} catch (JSONException e) {
GB.toast(getContext(), "uartTxJSONError: " + e.getLocalizedMessage(), Toast.LENGTH_LONG, GB.ERROR);