Skip to content

Commit 2d35004

Browse files
hadessTingPing
authored andcommitted
Fix manifest containing the wrong no-autodownload value
Fix copy/paste error that made the "no-autodownload" value in /app/manifest.json, showing the "autodelete" value instead. Fixes: c6ef29c ("builder: Add support for defining extensions in flatpak-builder"
1 parent 910407d commit 2d35004

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/builder-extension.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ builder_extension_get_property (GObject *object,
127127
break;
128128

129129
case PROP_NO_AUTODOWNLOAD:
130-
g_value_set_boolean (value, self->autodelete);
130+
g_value_set_boolean (value, self->no_autodownload);
131131
break;
132132

133133
case PROP_LOCALE_SUBSET:

0 commit comments

Comments
 (0)