Bugfixes after an actual test
Some checks failed
rolling-release / build (push) Has been cancelled
rolling-release / rolling-release (push) Has been cancelled

This commit is contained in:
Dmitrii Okunev
2025-06-22 00:48:43 +01:00
parent bbf03b770a
commit b3245edd03
3 changed files with 5 additions and 2 deletions

View File

@@ -5,4 +5,4 @@ Website = "https://github.com/xaionaro/streamctl"
Name = "streampanel"
ID = "center.dx.streampanel"
Version = "0.1.0"
Build = 412
Build = 416

View File

@@ -17,7 +17,7 @@ import (
)
const (
ChatLogSize = 50
ChatLogSize = 20
)
type chatUIInterface interface {

View File

@@ -97,6 +97,9 @@ func (ui *chatUIAsText) init(
nil,
ui.Text,
)
observability.Go(ctx, func() {
ui.Rebuild(ctx)
})
ui.Panel.addChatUI(ctx, ui)
return nil
}