Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion clientSSE.go.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ const sseResponse = async (
let lines = buffer.split("\n");
for (let i = 0; i < lines.length - 1; i++) {
const line = lines[i];
if (line?.length === 0) {
if (!line || line.length === 0) {
continue;
}
let data: any;
Expand Down
Loading