Ticket Created
over 5 years ago

WERETECH-8118

Sim issue with saveWaypoints

In the sim using 3.1.5, the following sometimes doesn't work.

Toybox.PersistedContent.saveWaypoint(location, {:name => name});

It works fine in the device (a real 1030).

Parents
  • So you're saying that 

    PersistedContent.saveWaypoint(location, {:name => "NameA"});
    PersistedContent.saveWaypoint(location, {:name => "NameB"});
    PersistedContent.saveWaypoint(location, {:name => "NameA"});
    

    On device would give you

    Waypoints:
    NameA
    NameA(2)
    NameB

    while simulator would give:

    Waypoints:
    NameA
    NameB

Comment
  • So you're saying that 

    PersistedContent.saveWaypoint(location, {:name => "NameA"});
    PersistedContent.saveWaypoint(location, {:name => "NameB"});
    PersistedContent.saveWaypoint(location, {:name => "NameA"});
    

    On device would give you

    Waypoints:
    NameA
    NameA(2)
    NameB

    while simulator would give:

    Waypoints:
    NameA
    NameB

Children