We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ab2568 commit f9908fdCopy full SHA for f9908fd
packages/flutter_app_packager/lib/src/makers/appimage/make_appimage_config.dart
@@ -85,9 +85,8 @@ class MakeAppImageConfig extends MakeConfig {
85
'Icon': appName,
86
'Type': 'Application',
87
'StartupNotify': startupNotify ? 'true' : 'false',
88
- 'MimeType': supportedMimeType != null && supportedMimeType!.isNotEmpty
89
- ? '${supportedMimeType!.join(';')};'
90
- : null,
+ if (supportedMimeType != null && supportedMimeType!.isNotEmpty)
+ 'MimeType': '${supportedMimeType!.join(';')};',
91
if (categories.isNotEmpty) 'Categories': categories.join(';'),
92
if (keywords.isNotEmpty) 'Keywords': keywords.join(';'),
93
if (this.actions.isNotEmpty)
0 commit comments