- 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>
8 lines
222 B
Python
Executable File
8 lines
222 B
Python
Executable File
#!/home/uroma/obsidian-web-interface/.venv/bin/python3
|
|
import sys
|
|
from websockets.cli import main
|
|
if __name__ == '__main__':
|
|
if sys.argv[0].endswith('.exe'):
|
|
sys.argv[0] = sys.argv[0][:-4]
|
|
sys.exit(main())
|