[cli] Fix error log

This commit is contained in:
Neeraj Gupta
2024-08-14 17:11:13 +05:30
parent ab17ae71d0
commit 5bd7170755

View File

@@ -151,7 +151,7 @@ func (r *RemoteFile) GetCreationTime() time.Time {
func (r *RemoteFile) GetModificationTime() time.Time {
value, ok := r.Metadata["modificationTime"]
if !ok {
panic("creationTime not found in metadata")
panic("modificationTime not found in metadata")
}
return time.UnixMicro(int64(value.(float64)))
}