mirror of
https://github.com/flatpak/flatpak.git
synced 2026-02-01 03:21:23 -05:00
Fix multiarch support
A typo was causing us to pass the app id as arch, breaking (at least) multiarch support.
This commit is contained in:
committed by
Alexander Larsson
parent
ea116809d1
commit
ecda7757bb
@@ -3581,7 +3581,7 @@ flatpak_run_app (FlatpakDecomposed *app_ref,
|
||||
return FALSE;
|
||||
|
||||
app_id = flatpak_decomposed_dup_id (app_ref);
|
||||
app_arch = flatpak_decomposed_dup_id (app_ref);
|
||||
app_arch = flatpak_decomposed_dup_arch (app_ref);
|
||||
|
||||
/* Check the user is allowed to run this flatpak. */
|
||||
if (!check_parental_controls (app_ref, app_deploy, cancellable, error))
|
||||
|
||||
Reference in New Issue
Block a user