Skip to content

Commit

Permalink
beta55
Browse files Browse the repository at this point in the history
  • Loading branch information
Hoshinonyaruko committed Apr 9, 2024
1 parent 869685c commit 1f3646e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions applogic/gensokyo.go
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ func (app *App) GensokyoHandler(w http.ResponseWriter, r *http.Request) {
} else {
//最后一条了
messageSSE := structs.InterfaceBody{
Content: newPart,
Content: newPart + "\n",
State: 11,
}
utils.SendPrivateMessageSSE(message.UserID, messageSSE)
Expand All @@ -449,7 +449,7 @@ func (app *App) GensokyoHandler(w http.ResponseWriter, r *http.Request) {
} else {
//最后一条了
messageSSE := structs.InterfaceBody{
Content: response,
Content: response + "\n",
State: 11,
}
utils.SendPrivateMessageSSE(message.UserID, messageSSE)
Expand Down

0 comments on commit 1f3646e

Please sign in to comment.