mirror of
https://github.com/mynodebtc/mynode.git
synced 2024-11-11 16:09:16 +00:00
Fix bug with new 32-bit warning on 64-bit
This commit is contained in:
parent
0227114fcb
commit
53eb2a19be
|
@ -673,7 +673,7 @@ def unset_uploader():
|
|||
#==================================
|
||||
def show_32_bit_warning():
|
||||
if not os.path.isfile("/tmp/hide_32_bit_warning"):
|
||||
if get_device_type() == "raspi4" and get_device_arch != "aarch64":
|
||||
if get_device_type() == "raspi4" and get_device_arch() != "aarch64":
|
||||
return True
|
||||
return False
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user