From b07db6c50016778a160f7cd2cd0466ef66f67c37 Mon Sep 17 00:00:00 2001 From: Dan Date: Fri, 5 Dec 2025 16:37:42 -0800 Subject: [PATCH] SendTimestamps: support s and S timestamp formats (#3792) --- src/plugins/sendTimestamps/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/sendTimestamps/index.tsx b/src/plugins/sendTimestamps/index.tsx index a136e9c8..579656c4 100644 --- a/src/plugins/sendTimestamps/index.tsx +++ b/src/plugins/sendTimestamps/index.tsx @@ -48,7 +48,7 @@ function parseTime(time: string) { return ``; } -const Formats = ["", "t", "T", "d", "D", "f", "F", "R"] as const; +const Formats = ["", "t", "T", "d", "D", "f", "F", "s", "S", "R"] as const; type Format = typeof Formats[number]; const cl = classNameFactory("vc-st-");