1
0
Fork 0

Fix logic error.

liquidsoap-2.2
Icedream 2021-02-28 21:19:34 +01:00
parent c722777b95
commit fe6c9355cb
Signed by: icedream
GPG Key ID: 468BBEEBB9EC6AEA
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ func getPublisherFromTags(tags tag.Metadata) string {
func (m *manager) UpdateFileFromFilesystem(filePath string) (err error) {
f, err := os.Open(filePath)
if err == nil {
if err != nil {
return
}