Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Incorrect incognito detection #244

Open
skywinder opened this issue Aug 13, 2019 · 0 comments
Open

Incorrect incognito detection #244

skywinder opened this issue Aug 13, 2019 · 0 comments

Comments

@skywinder
Copy link

skywinder commented Aug 13, 2019

Bounty

Scope

  • Incorrect incognito detection:
  • After several minutes (3-7) burner wallet changes from normal mode to incognito mode. Actually, it is not incognito.

Steps to reproduce:

Open Firefox in normal mode

  1. go to xdai.io
  2. wait for 5-10 minutes.
  3. Burner shows, that you are in incognito mode.

- OS: iOS 12 / iPhone XR
- Browser: Firefox 18.1

Deliverables

  • We have to check code in this scope:
    //snagged from https://stackoverflow.com/questions/52759238/private-incognito-mode-detection-for-ios-12-safari
    function retry(isDone, next) {
    var current_trial = 0, max_retry = 50, interval = 10, is_timeout = false;
    var id = window.setInterval(
    function() {
    if (isDone()) {
    window.clearInterval(id);
    next(is_timeout);
    }
    if (current_trial++ > max_retry) {
    window.clearInterval(id);
    is_timeout = true;
    next(is_timeout);
    }
    },
    10
    );
    }

Roles

bounty gardener: @skywinder / 10%
bounty worker: name / 75%
bounty reviewer: name / 15%

iamonuwa pushed a commit to iamonuwa/burner-wallet that referenced this issue Aug 17, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant