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
This commit is contained in:
Andre Moreira Magalhaes
2019-07-22 22:13:36 -03:00
committed by Atomic Bot
parent 9a0e45941a
commit 37a7b6edfd

View File

@@ -1912,7 +1912,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;
}