diff options
Diffstat (limited to 'src/leap/bitmask/chrome/chromeapp.py')
-rw-r--r-- | src/leap/bitmask/chrome/chromeapp.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/leap/bitmask/chrome/chromeapp.py b/src/leap/bitmask/chrome/chromeapp.py index b1de0990..b6769804 100644 --- a/src/leap/bitmask/chrome/chromeapp.py +++ b/src/leap/bitmask/chrome/chromeapp.py @@ -64,7 +64,9 @@ def start_app(): print('[!] Cannot find chromium installed in the system!') sys.exit(1) delete_old_authtoken() - bitmaskd = Process(target=run_bitmaskd) + bitmaskd = Process(target=run_bitmaskd, + kwargs={'app_name': 'Bitmask', + 'exec_path': sys.argv[0]}) bitmaskd.start() cmd = 'chromium -app=%s' % get_url() |