Skip to content

Commit

Permalink
fix: since description is not available now, start using just entryname
Browse files Browse the repository at this point in the history
  • Loading branch information
nlif-m committed Jun 16, 2023
1 parent 577fc75 commit 9e4e1ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion atomgen.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ filesLoop:
return nil, err
}

entries = append(entries, aatom.NewEntry(Name, fileLocation, mimeType, uint(length), fileModificationTime, fileLocation))
entries = append(entries, aatom.NewEntry(Name, fileLocation, mimeType, uint(length), fileModificationTime, Name))
}
return entries, nil
}
Expand Down

0 comments on commit 9e4e1ce

Please sign in to comment.