Merge pull request #6982 from electronerdian/webworkflow_times
Fix mask for minutes field when computing modified_ns
This commit is contained in:
commit
7f72280693
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue