0
0
Fork 0
mirror of https://github.com/matrix-org/dendrite synced 2024-09-30 23:09:01 +02:00

mediaapi/fileutils: Fix and comment os.IsNotExist bug

This commit is contained in:
Robert Swain 2017-05-31 07:08:21 +02:00
parent 63ccd770c6
commit a4300eefc4

View file

@ -76,7 +76,9 @@ func MoveFileWithHashCheck(tmpDir types.Path, mediaMetadata *types.MediaMetadata
}
var stat os.FileInfo
if stat, err = os.Stat(finalPath); os.IsExist(err) {
// Note: The double-negative is intentional as os.IsExist(err) != !os.IsNotExist(err).
// The functions are error checkers to be used in different cases.
if stat, err = os.Stat(finalPath); !os.IsNotExist(err) {
duplicate = true
if stat.Size() == int64(mediaMetadata.FileSizeBytes) {
return types.Path(finalPath), duplicate, nil