Skip to content

Commit 5e32049

Browse files
committed
fix ordinal
1 parent e2205ce commit 5e32049

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/eventStream/EventStream.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const buildWebSocketUrl = (location: string): string => {
3232
url.protocol = "wss:";
3333

3434
// Add ordinal parameter to get all historical messages
35-
url.searchParams.set("stream_from_ordinal", "0");
35+
url.searchParams.set("stream_from_ordinal", "1");
3636

3737
return url.toString();
3838
};

0 commit comments

Comments
 (0)