1
0
Fork 0

Fix logic error.

master
Icedream 2021-02-28 21:19:34 +01:00
parent b041fcca48
commit f03bbbcf13
Signed by: icedream
GPG Key ID: 1573F6D8EFE4D0CF
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
}