Skip to content

Commit b89254a

Browse files
committed
Fix: emit ts as numeric epoch ms via toEpochMs()
1 parent 2c9dae0 commit b89254a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

components/yutori/sources/new-scout-update/new-scout-update.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ export default {
9898
this.$emit(update, {
9999
id: update.id,
100100
summary: `[${update.scout_display_name}] ${String(update.content || "").slice(0, 80)}`,
101-
ts: update.timestamp,
101+
ts: toEpochMs(update.timestamp),
102102
});
103103
}
104104

0 commit comments

Comments
 (0)