- Modified loadChatHistory() to check for active project before fetching all sessions - When active project exists, use project.sessions instead of fetching from API - Added detailed console logging to debug session filtering - This prevents ALL sessions from appearing in every project's sidebar Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
20 lines
394 B
Cython
20 lines
394 B
Cython
cdef class Server:
|
|
cdef:
|
|
list _servers
|
|
list _waiters
|
|
int _active_count
|
|
Loop _loop
|
|
bint _serving
|
|
object _serving_forever_fut
|
|
object __weakref__
|
|
|
|
cdef _add_server(self, UVStreamServer srv)
|
|
cdef _start_serving(self)
|
|
cdef _wakeup(self)
|
|
|
|
cdef _attach(self)
|
|
cdef _detach(self)
|
|
|
|
cdef _ref(self)
|
|
cdef _unref(self)
|