transaction: Append bundle to correct list on flatpak_transaction_add_install_bundle()

Signed-off-by: Andre Moreira Magalhaes <andre@endlessm.com>

Closes: #3025
Approved by: matthiasclasen

(cherry picked from commit 37a7b6edfd)
(cherry picked from commit 47af6b39b9)

Closes: #3115
Approved by: alexlarsson
This commit is contained in:
Andre Moreira Magalhaes
2019-07-22 22:13:36 -03:00
committed by Atomic Bot
parent ade6d65885
commit e4a7b2e2fd

View File

@@ -1807,7 +1807,7 @@ flatpak_transaction_add_install_bundle (FlatpakTransaction *self,
{
FlatpakTransactionPrivate *priv = flatpak_transaction_get_instance_private (self);
priv->bundles = g_list_append (priv->flatpakrefs, bundle_data_new (file, gpg_data));
priv->bundles = g_list_append (priv->bundles, bundle_data_new (file, gpg_data));
return TRUE;
}