diff --git a/config/chroot_local-includes/usr/local/bin/electrum b/config/chroot_local-includes/usr/local/bin/electrum index 6c1e9d42f649b7d3133c62014c2e9d640e0e040d..e3f9b116e54026f586f97902b1cb87614f667701 100755 --- a/config/chroot_local-includes/usr/local/bin/electrum +++ b/config/chroot_local-includes/usr/local/bin/electrum @@ -35,7 +35,7 @@ def main(*args): # Disable update checking for all users (even those who made their config # persistent before we changed this value in the default config), because # users can't easily update to a new version anyway if it's not in Debian. - subprocess.run(['/usr/bin/electrum', 'setconfig', 'check_updates', 'false'], check=True, stdout=subprocess.DEVNULL) + subprocess.run(['/usr/bin/electrum', '--offline', 'setconfig', 'check_updates', 'false'], check=True, stdout=subprocess.DEVNULL) os.execv('/usr/bin/electrum', ['/usr/bin/electrum'] + list(args))