Two history_stats sensors acting very differently

I’ve got two sensors that I created from the guide by u/basnijholt. I implemented his quarantine meter but I’m having a weird situation where the history stats aren’t updating for me but they are for my lady. Any idea what I should look at? The code is basically the same with just substitutions of my user entity id’s and reduction to 7 days from 14 days. The person. entity is driven by our ios phones and I’ve been home for about 23 hours
image

- platform: history_stats
  name: Quarantine meter Dmitriy
  entity_id: person.dmitriy
  state: "home"
  type: ratio
  duration:
    days: 7
  end: "{{ now() }}"
- platform: history_stats
  name: Quarantine meter Nidhi
  entity_id: person.nidhi
  state: "home"
  type: ratio
  duration:
    days: 7
  end: "{{ now() }}"