Closed BrenekH closed 3 years ago
The simple fix is to change strconv.Atoi to strconv.ParseInt("", 10, 64) in controller/library/mediainfo/mediainfo.go, and changing the FileMetadata struct to use int64 instead of int.
strconv.Atoi
strconv.ParseInt("", 10, 64)
controller/library/mediainfo/mediainfo.go
FileMetadata
int64
int
Closed by #123
The simple fix is to change
strconv.Atoi
tostrconv.ParseInt("", 10, 64)
incontroller/library/mediainfo/mediainfo.go
, and changing theFileMetadata
struct to useint64
instead ofint
.