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 291b65e commit 16b2a70Copy full SHA for 16b2a70
cmd/fyne/internal/commands/package-unix.go
@@ -64,8 +64,8 @@ func (p *Packager) packageUNIX() error {
64
65
mimes := ""
66
openWith := ""
67
- if p.OpenWith != nil && p.OpenWith.MimeType != "" {
68
- mimes = p.OpenWith.MimeType
+ if p.OpenWith != nil && p.OpenWith.MimeTypes != "" {
+ mimes = p.OpenWith.MimeTypes
69
openWith = " %F"
70
}
71
cmd/fyne/internal/metadata/data.go
@@ -36,5 +36,5 @@ type LinuxAndBSD struct {
36
37
38
type OpenWith struct {
39
- MimeType string `toml:",omitempty"`
+ MimeTypes string `toml:",omitempty"`
40
0 commit comments