Merge pull request #6982 from electronerdian/webworkflow_times

Fix mask for minutes field when computing modified_ns
This commit is contained in:
Dan Halbert 2022-10-03 21:34:01 -04:00 committed by GitHub
commit 7f72280693
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -660,7 +660,7 @@ static void _reply_directory_json(socketpool_socket_obj_t *socket, _request *req
(file_info.fdate >> 5) & 0xf,
file_info.fdate & 0x1f,
file_info.ftime >> 11,
(file_info.ftime >> 5) & 0x1f,
(file_info.ftime >> 5) & 0x3f,
(file_info.ftime & 0x1f) * 2);
// Manually append zeros to make the time nanoseconds. Support for printing 64 bit numbers