Does this issue occur when all extensions are disabled?: Yes
- VS Code Version:1.65.0
- OS Version: Linux debian 5.16.0-3-amd64
Steps to Reproduce:
- Browse some extensions in the market. Check the
Last updated field, if the extension was updated between 0:00:00 and 1:00:00 AM, it will show 24:xx:xx, which is not desired.
- Two examples: extension
ms-ceintl.vscode-language-pack-zh-hans in en_US locale, njpwerner.autodocstring in zh_CN locale
Analysis:
According to the question on stackOverflow, It seems to be a bug in INTL ECMA specifications. we can avoid this issue by add hourCycle: 'h23' to toLocaleString method. I tried the solution, it worked. The changes is as follows:

Is this suitable to avoid the issue ?
Screen shots:

