spelling: timestamp

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2025-01-28 15:50:02 -05:00
parent 994d10f5df
commit f257b7ae1f
3 changed files with 4 additions and 4 deletions

View file

@ -134,7 +134,7 @@ static void prv_render_bpm(GContext *ctx, Layer *base_layer) {
graphics_text_node_destroy(&container->node);
}
static void prv_render_timstamp(GContext *ctx, Layer *base_layer) {
static void prv_render_timestamp(GContext *ctx, Layer *base_layer) {
HealthHrSummaryCardData *data = layer_get_data(base_layer);
if (data->last_updated <= 0 || data->now_bpm == 0) {
@ -189,7 +189,7 @@ static void prv_base_layer_update_proc(Layer *base_layer, GContext *ctx) {
prv_render_bpm(ctx, base_layer);
prv_render_timstamp(ctx, base_layer);
prv_render_timestamp(ctx, base_layer);
}
static void prv_hr_detail_card_unload_callback(Window *window) {

View file

@ -193,7 +193,7 @@ static bool prv_should_ignore_because_stale(time_t timestamp) {
// workaround for PBL-8400 (ignore notifications older than 2 hours)
// PBL-9066: Increased to 20 minutes due to Mail.app only fetching emails every 15 minutes
// PBL-9251: Increased to 2 hours. People have Fetch set to hourly.
// PBL-12726: Added a check to see if the timstamp is coming from a location based reminder
// PBL-12726: Added a check to see if the timestamp is coming from a location based reminder
// This work-around is causing more trouble than the problem it was solving...
if (timestamp < (now - MAXIMUM_NOTIFY_TIME) && timestamp != INVALID_TIME) {
PBL_LOG(LOG_LEVEL_INFO, "Not presenting stale notif (ts=%ld)", timestamp);