mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 05:23:35 +00:00
Uptil now, on typing "<time" after some other autocompleteable token like a mention or emoji, the timezone aware time typeahead would not get triggered since the time syntax was checked after the earlier syntax had been mistakenly used to (wrongly) tokenize the precursor text. Now the code has been fixed to detect the time syntax the same way as the rest: checking each character in the precursor text from end to start, and tokenize it correctly. Fixes: #23998.