Acknowledged

ERA joins and mixes errors

Error Name: Invalid Value
Occurrences: 2
First Occurrence: 2022-08-19
Last Occurrence: 2022-08-19
Devices:
    fēnix® 7X / tactix® 7 / quatix® 7X Solar / EnduroTm 2: 8.37
    fēnix® 7X / tactix® 7 / quatix® 7X Solar / EnduroTm 2: 8.37
App Versions: 2.0.4
Languages: chs, rus
Backtrace:
    file___1.initialize:62
    file___1.draw:146
    file___2.initialize:68
    file___2.onSC:175

1. Backtrace is completely bad e.g. no onUpdate which calls draw

2. I think it's 2 separated errors and symbols are mixed

3. I suppose errors are connected with getSettingsView()

Parents
  • And another issue.
    I'm almost sure that the errors form previous version of app are included into current version.

    I put into store a few version because of workaround and in current version I can see errors "Symbol Not Found Error" that I've fixed. So it looks like:

    - version 1 - workaround

    - version 2 - was bug in workaround

    - version 3 fixing bug

    Some user have still version 2  and I can see their errors in current 3.

    And the bug was very simple (and I've already reported it) -compiler doesn't check the name in local vars, i e.g.

    function f1(key)

    {

    }

    function f2()
    {

      var key1;

      key = 5;//typo

    }

    for compiler is ok there is key in symbol table but just right in f1 not f2

Comment
  • And another issue.
    I'm almost sure that the errors form previous version of app are included into current version.

    I put into store a few version because of workaround and in current version I can see errors "Symbol Not Found Error" that I've fixed. So it looks like:

    - version 1 - workaround

    - version 2 - was bug in workaround

    - version 3 fixing bug

    Some user have still version 2  and I can see their errors in current 3.

    And the bug was very simple (and I've already reported it) -compiler doesn't check the name in local vars, i e.g.

    function f1(key)

    {

    }

    function f2()
    {

      var key1;

      key = 5;//typo

    }

    for compiler is ok there is key in symbol table but just right in f1 not f2

Children
No Data