alpha
Login
or
Join now
hotsocket.fyi
/
niri
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
idk
author
nekomimi.pet
date
2 months ago
(May 10, 2026, 2:50 AM -0400)
commit
3dcd9909
3dcd9909ab7fb3ad920818cdfe5f30097a6da582
parent
22e20ecc
22e20ecc08f391930cbcd1b5a4bd481aa1a32ad8
+2
-2
1 changed file
Expand all
Collapse all
Unified
Split
scripts
chat.ts
+2
-2
scripts/chat.ts
View file
Reviewed
···
3
3
import { renderMarkdownAnsi } from "./terminal-markdown"
4
4
5
5
const HOST = process.env.NIRI_HOST ?? "http://localhost"
6
6
-
const PORT = process.env.PORT ?? "3000"
6
6
+
const PORT = process.env.PORT ?? "4000"
7
7
const BASE = `${HOST}:${PORT}`
8
8
9
9
const c = {
···
121
121
streamStatusCheckInFlight = true
122
122
try {
123
123
const status = await client.getStatus()
124
124
-
if (!status.running) {
124
124
+
if (!status.running || status.idle) {
125
125
endActiveStream()
126
126
} else {
127
127
scheduleStreamSettleCheck()