summaryrefslogtreecommitdiff
path: root/qutebrowser/misc/elf.py
diff options
context:
space:
mode:
Diffstat (limited to 'qutebrowser/misc/elf.py')
-rw-r--r--qutebrowser/misc/elf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/qutebrowser/misc/elf.py b/qutebrowser/misc/elf.py
index 6d35eecb4..18cb9634c 100644
--- a/qutebrowser/misc/elf.py
+++ b/qutebrowser/misc/elf.py
@@ -310,7 +310,7 @@ def _parse_from_file(f: IO[bytes]) -> Versions:
def parse_webenginecore() -> Optional[Versions]:
"""Parse the QtWebEngineCore library file."""
- if version.is_sandboxed():
+ if version.is_flatpak():
# Flatpak has Qt in /usr/lib/x86_64-linux-gnu, but QtWebEngine in /app/lib.
library_path = pathlib.Path("/app/lib")
else: