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 842f8fa commit a8b6661Copy full SHA for a8b6661
server/core/integration.go
@@ -66,7 +66,7 @@ func (c *Client) writeNfoFile(historyId int) error {
66
if err != nil {
67
return errors.Wrap(err, "xml marshal")
68
}
69
- return st.WriteFile(nfoPath, data)
+ return st.WriteFile(nfoPath, []byte(xml.Header+string(data)))
70
71
72
} else if md.MediaType == media.MediaTypeMovie { //movie.nfo
@@ -101,7 +101,7 @@ func (c *Client) writeNfoFile(historyId int) error {
101
102
103
104
105
106
107
return nil
0 commit comments