Update TUI thread settings notification matches

This commit is contained in:
Eric Traut
2026-05-18 18:31:49 -07:00
parent 505a6dec64
commit 654586eda6
2 changed files with 2 additions and 2 deletions

View File

@@ -47,7 +47,7 @@ pub(super) fn server_notification_thread_target(
ServerNotification::ThreadStatusChanged(notification) => {
Some(notification.thread_id.as_str())
}
ServerNotification::ThreadTurnContextUpdated(_) => None,
ServerNotification::ThreadSettingsUpdated(_) => None,
ServerNotification::ThreadArchived(notification) => Some(notification.thread_id.as_str()),
ServerNotification::ThreadUnarchived(notification) => Some(notification.thread_id.as_str()),
ServerNotification::ThreadClosed(notification) => Some(notification.thread_id.as_str()),

View File

@@ -217,7 +217,7 @@ impl ChatWidget {
| ServerNotification::AccountRateLimitsUpdated(_)
| ServerNotification::ThreadStarted(_)
| ServerNotification::ThreadStatusChanged(_)
| ServerNotification::ThreadTurnContextUpdated(_)
| ServerNotification::ThreadSettingsUpdated(_)
| ServerNotification::ThreadArchived(_)
| ServerNotification::ThreadUnarchived(_)
| ServerNotification::RawResponseItemCompleted(_)