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

fix: app.relaunch loses args when execPath specified #35108

Merged
merged 4 commits into from Aug 8, 2022

Commits on Jul 25, 2022

  1. Restore correct app.relaunch behavior

    Commit 1e37162 changed a bitwise-or operator to a boolean-or operator,
    which altered the short-circuit behavior and skipped the side-effect
    of populating the "args" variable.
    
    This commit restores the original side-effect behavior, while still
    using a boolean-or operator to keep the linter happy.
    
    Addresses issue electron#33686
    p120ph37 committed Jul 25, 2022
    Copy the full SHA
    83decad View commit details
    Browse the repository at this point in the history

Commits on Jul 27, 2022

  1. Copy the full SHA
    85aa2fc View commit details
    Browse the repository at this point in the history

Commits on Jul 29, 2022

  1. Add regression test

    p120ph37 committed Jul 29, 2022
    Copy the full SHA
    638b70b View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2022

  1. fix typo

    p120ph37 committed Aug 2, 2022
    Copy the full SHA
    0c66604 View commit details
    Browse the repository at this point in the history