Open hndrkx opened 3 years ago
That's odd. This error does seem to be related to the issue you're having. The latest commands, channels, music tab, etc. utilize the web socket connection to receive data so when this closes those features no longer work.
requirements/
directory?I'll look into this issue and let you know if I find the problem. I haven't encountered this error before in one of the builds.
Connectivity should be pretty standard. Mumble server is running in a container on the same machine, it has its owns IP. JJMumbleBot is placed in the same subnet on the same host either in a Docker container or in a VM.
I've tried other browsers but that was a no go.
Here is the output of the requirements:
bot@botmaster:~/JJMumbleBot$ python3 -m pip install -r requirements/requirements.txt
Defaulting to user installation because normal site-packages is not writeable
Requirement already satisfied: fuzzywuzzy in /home/bot/.local/lib/python3.8/site-packages (from -r requirements/requirements.txt (line 2)) (0.18.0)
Requirement already satisfied: python-Levenshtein in /home/bot/.local/lib/python3.8/site-packages (from -r requirements/requirements.txt (line 3)) (0.12.2)
Requirement already satisfied: beautifulsoup4 in /home/bot/.local/lib/python3.8/site-packages (from -r requirements/requirements.txt (line 4)) (4.9.3)
Requirement already satisfied: requests in /home/bot/.local/lib/python3.8/site-packages (from -r requirements/requirements.txt (line 5)) (2.25.1)
Requirement already satisfied: Pillow in /home/bot/.local/lib/python3.8/site-packages (from -r requirements/requirements.txt (line 6)) (8.1.2)
Requirement already satisfied: youtube-dl in /home/bot/.local/lib/python3.8/site-packages (from -r requirements/requirements.txt (line 7)) (2021.3.25)
Requirement already satisfied: pymumble==1.6 in /home/bot/.local/lib/python3.8/site-packages (from -r requirements/requirements.txt (line 8)) (1.6)
Requirement already satisfied: opuslib==3.0.1 in /home/bot/.local/lib/python3.8/site-packages (from pymumble==1.6->-r requirements/requirements.txt (line 8)) (3.0.1)
Requirement already satisfied: protobuf==3.12.2 in /home/bot/.local/lib/python3.8/site-packages (from pymumble==1.6->-r requirements/requirements.txt (line 8)) (3.12.2)
Requirement already satisfied: setuptools in /usr/lib/python3/dist-packages (from protobuf==3.12.2->pymumble==1.6->-r requirements/requirements.txt (line 8)) (49.3.1)
Requirement already satisfied: six>=1.9 in /usr/lib/python3/dist-packages (from protobuf==3.12.2->pymumble==1.6->-r requirements/requirements.txt (line 8)) (1.15.0)
Requirement already satisfied: soupsieve>1.2 in /home/bot/.local/lib/python3.8/site-packages (from beautifulsoup4->-r requirements/requirements.txt (line 4)) (2.2.1)
Requirement already satisfied: chardet<5,>=3.0.2 in /usr/lib/python3/dist-packages (from requests->-r requirements/requirements.txt (line 5)) (3.0.4)
Requirement already satisfied: certifi>=2017.4.17 in /usr/lib/python3/dist-packages (from requests->-r requirements/requirements.txt (line 5)) (2020.4.5.1)
Requirement already satisfied: urllib3<1.27,>=1.21.1 in /usr/lib/python3/dist-packages (from requests->-r requirements/requirements.txt (line 5)) (1.25.9)
Requirement already satisfied: idna<3,>=2.5 in /usr/lib/python3/dist-packages (from requests->-r requirements/requirements.txt (line 5)) (2.10)
bot@botmaster:~/JJMumbleBot$ python3 -m pip install --upgrade -r requirements/requirements.txt
Defaulting to user installation because normal site-packages is not writeable
Requirement already satisfied: fuzzywuzzy in /home/bot/.local/lib/python3.8/site-packages (from -r requirements/requirements.txt (line 2)) (0.18.0)
Requirement already satisfied: python-Levenshtein in /home/bot/.local/lib/python3.8/site-packages (from -r requirements/requirements.txt (line 3)) (0.12.2)
Requirement already satisfied: beautifulsoup4 in /home/bot/.local/lib/python3.8/site-packages (from -r requirements/requirements.txt (line 4)) (4.9.3)
Requirement already satisfied: requests in /home/bot/.local/lib/python3.8/site-packages (from -r requirements/requirements.txt (line 5)) (2.25.1)
Requirement already satisfied: Pillow in /home/bot/.local/lib/python3.8/site-packages (from -r requirements/requirements.txt (line 6)) (8.1.2)
Requirement already satisfied: youtube-dl in /home/bot/.local/lib/python3.8/site-packages (from -r requirements/requirements.txt (line 7)) (2021.3.25)
Requirement already satisfied: pymumble==1.6 in /home/bot/.local/lib/python3.8/site-packages (from -r requirements/requirements.txt (line 8)) (1.6)
Requirement already satisfied: protobuf==3.12.2 in /home/bot/.local/lib/python3.8/site-packages (from pymumble==1.6->-r requirements/requirements.txt (line 8)) (3.12.2)
Requirement already satisfied: opuslib==3.0.1 in /home/bot/.local/lib/python3.8/site-packages (from pymumble==1.6->-r requirements/requirements.txt (line 8)) (3.0.1)
Requirement already satisfied: setuptools in /usr/lib/python3/dist-packages (from protobuf==3.12.2->pymumble==1.6->-r requirements/requirements.txt (line 8)) (49.3.1)
Requirement already satisfied: six>=1.9 in /usr/lib/python3/dist-packages (from protobuf==3.12.2->pymumble==1.6->-r requirements/requirements.txt (line 8)) (1.15.0)
Requirement already satisfied: soupsieve>1.2 in /home/bot/.local/lib/python3.8/site-packages (from beautifulsoup4->-r requirements/requirements.txt (line 4)) (2.2.1)
Requirement already satisfied: idna<3,>=2.5 in /usr/lib/python3/dist-packages (from requests->-r requirements/requirements.txt (line 5)) (2.10)
Requirement already satisfied: chardet<5,>=3.0.2 in /usr/lib/python3/dist-packages (from requests->-r requirements/requirements.txt (line 5)) (3.0.4)
Requirement already satisfied: urllib3<1.27,>=1.21.1 in /usr/lib/python3/dist-packages (from requests->-r requirements/requirements.txt (line 5)) (1.25.9)
Requirement already satisfied: certifi>=2017.4.17 in /usr/lib/python3/dist-packages (from requests->-r requirements/requirements.txt (line 5)) (2020.4.5.1)
bot@botmaster:~/JJMumbleBot$ python3 -m pip install -r requirements/web_server.txt
Defaulting to user installation because normal site-packages is not writeable
Requirement already satisfied: uvicorn in /home/bot/.local/lib/python3.8/site-packages (from -r requirements/web_server.txt (line 2)) (0.13.4)
Requirement already satisfied: fastapi in /home/bot/.local/lib/python3.8/site-packages (from -r requirements/web_server.txt (line 3)) (0.63.0)
Requirement already satisfied: fastapi-utils in /home/bot/.local/lib/python3.8/site-packages (from -r requirements/web_server.txt (line 4)) (0.2.1)
Requirement already satisfied: pydantic in /home/bot/.local/lib/python3.8/site-packages (from -r requirements/web_server.txt (line 5)) (1.8.1)
Requirement already satisfied: websockets in /home/bot/.local/lib/python3.8/site-packages (from -r requirements/web_server.txt (line 6)) (8.1)
Requirement already satisfied: aiofiles in /home/bot/.local/lib/python3.8/site-packages (from -r requirements/web_server.txt (line 7)) (0.6.0)
Requirement already satisfied: jinja2 in /usr/lib/python3/dist-packages (from -r requirements/web_server.txt (line 8)) (2.11.2)
Requirement already satisfied: starlette==0.13.6 in /home/bot/.local/lib/python3.8/site-packages (from fastapi->-r requirements/web_server.txt (line 3)) (0.13.6)
Requirement already satisfied: typing-extensions>=3.7.4.3 in /home/bot/.local/lib/python3.8/site-packages (from pydantic->-r requirements/web_server.txt (line 5)) (3.7.4.3)
Requirement already satisfied: sqlalchemy<2.0.0,>=1.3.12 in /home/bot/.local/lib/python3.8/site-packages (from fastapi-utils->-r requirements/web_server.txt (line 4)) (1.4.2)
Requirement already satisfied: greenlet!=0.4.17 in /home/bot/.local/lib/python3.8/site-packages (from sqlalchemy<2.0.0,>=1.3.12->fastapi-utils->-r requirements/web_server.txt (line 4)) (1.0.0)
Requirement already satisfied: h11>=0.8 in /home/bot/.local/lib/python3.8/site-packages (from uvicorn->-r requirements/web_server.txt (line 2)) (0.12.0)
Requirement already satisfied: click==7.* in /usr/lib/python3/dist-packages (from uvicorn->-r requirements/web_server.txt (line 2)) (7.1.2)
I'm trying to figure out what could be causing this. Here are a couple things to look at:
-verbose
mode enabled? This should display the debug outputs in the console. Maybe a related error can be found here.-webport
launch parameter to change this value if you're not changing the metadata file.
You could additionally set a custom ip using the -webip
launch parameter.
https://github.com/DuckBoss/JJMumbleBot/blob/98303a4dd6f9ef689654f683630dbef1c14b6054/JJMumbleBot/plugins/core/web_server/metadata.ini#L14-L17Alright so this is the output running with -verbose:
INFO: 192.168.1.35:19730 - "GET / HTTP/1.1" 200 OK
INFO: 192.168.1.35:19730 - "GET /api/general/name HTTP/1.1" 200 OK
INFO: 192.168.1.35:19731 - "GET /api/general HTTP/1.1" 200 OK
INFO: 192.168.1.35:19732 - "GET /api/cmdhistory HTTP/1.1" 200 OK
INFO: 192.168.1.35:19733 - "GET /api/plugins HTTP/1.1" 200 OK
INFO: 192.168.1.35:19730 - "GET /api/general/name HTTP/1.1" 200 OK
INFO: 192.168.1.35:19733 - "GET /api/general/name HTTP/1.1" 200 OK
INFO: ('192.168.1.35', 19734) - "WebSocket /ws" [accepted]
ERROR: Exception in ASGI application
Traceback (most recent call last):
File "/home/bot/.local/lib/python3.8/site-packages/uvicorn/protocols/websockets/websockets_impl.py", line 162, in run_asgi
result = await self.app(self.scope, self.asgi_receive, self.asgi_send)
File "/home/bot/.local/lib/python3.8/site-packages/uvicorn/middleware/proxy_headers.py", line 45, in __call__
return await self.app(scope, receive, send)
File "/home/bot/.local/lib/python3.8/site-packages/fastapi/applications.py", line 199, in __call__
await super().__call__(scope, receive, send)
File "/home/bot/.local/lib/python3.8/site-packages/starlette/applications.py", line 111, in __call__
await self.middleware_stack(scope, receive, send)
File "/home/bot/.local/lib/python3.8/site-packages/starlette/middleware/errors.py", line 146, in __call__
await self.app(scope, receive, send)
File "/home/bot/.local/lib/python3.8/site-packages/starlette/middleware/cors.py", line 70, in __call__
await self.app(scope, receive, send)
File "/home/bot/.local/lib/python3.8/site-packages/starlette/exceptions.py", line 58, in __call__
await self.app(scope, receive, send)
File "/home/bot/.local/lib/python3.8/site-packages/starlette/routing.py", line 566, in __call__
await route.handle(scope, receive, send)
File "/home/bot/.local/lib/python3.8/site-packages/starlette/routing.py", line 283, in handle
await self.app(scope, receive, send)
File "/home/bot/.local/lib/python3.8/site-packages/starlette/routing.py", line 57, in app
await func(session)
File "/home/bot/.local/lib/python3.8/site-packages/fastapi/routing.py", line 247, in app
await dependant.call(**values)
File "JJMumbleBot/JJMumbleBot/plugins/core/web_server/web_helper.py", line 69, in socket_connection
await websocket.send_json(monitor_service.get_all_socket_data())
File "JJMumbleBot/JJMumbleBot/plugins/core/web_server/monitor_service.py", line 14, in get_all_socket_data
socket_data.update(get_all_online())
File "JJMumbleBot/JJMumbleBot/plugins/core/web_server/monitor_service.py", line 101, in get_all_online
encoded_dict = json.dumps(online_user_info, sort_keys=True)
File "/usr/lib/python3.8/json/__init__.py", line 234, in dumps
return cls(
File "/usr/lib/python3.8/json/encoder.py", line 199, in encode
chunks = self.iterencode(o, _one_shot=True)
File "/usr/lib/python3.8/json/encoder.py", line 257, in iterencode
return _iterencode(o, 0)
File "/usr/lib/python3.8/json/encoder.py", line 179, in default
raise TypeError(f'Object of type {o.__class__.__name__} '
TypeError: Object of type RepeatedScalarContainer is not JSON serializable
Error in closing handshake
Traceback (most recent call last):
File "/home/bot/.local/lib/python3.8/site-packages/websockets/server.py", line 199, in handler
await self.close()
File "/home/bot/.local/lib/python3.8/site-packages/websockets/protocol.py", line 676, in close
await asyncio.wait_for(
File "/usr/lib/python3.8/asyncio/tasks.py", line 491, in wait_for
return fut.result()
File "/home/bot/.local/lib/python3.8/site-packages/websockets/protocol.py", line 1101, in write_close_frame
await self.write_frame(True, OP_CLOSE, data, _expected_state=State.CLOSING)
File "/home/bot/.local/lib/python3.8/site-packages/websockets/protocol.py", line 1083, in write_frame
await self.ensure_open()
File "/home/bot/.local/lib/python3.8/site-packages/websockets/protocol.py", line 803, in ensure_open
raise self.connection_closed_exc()
websockets.exceptions.ConnectionClosedError: code = 1006 (connection closed abnormally [internal]), no reason
I'm running this on UnRaid 6.9.0, either in docker or separate VM, nothing on the host is using port 7000, and I've tried other port without succcess. I'll try to setup the bot on a separate 20.04 host, to see if that will work.
This error occours every time I reload the web interface. If I click on "Audio" this error is output with verbose aswell:
INFO: 192.168.1.35:19750 - "GET /favicon.ico HTTP/1.1" 200 OK
INFO: 192.168.1.35:19750 - "GET /... HTTP/1.1" 404 Not Found
EDIT: I just installed the bot on a standalone 20.04 Machine, and I got the exact same error.
EDIT2: I dont know if this is something but I found this aswell:
[JJMumbleBot(5.1.1).StartUp]:######### Initializing Mumble Client #########
[JJMumbleBot(5.1.1).General]:'NoneType' object is not subscriptable
[JJMumbleBot(5.1.1).General]:'NoneType' object is not subscriptable
Thanks for the full traceback! I'll look into this and see if I can resolve this problem as soon as possible.
EDIT:
EDIT2: I dont know if this is something but I found this aswell:
[JJMumbleBot(5.1.1).StartUp]:######### Initializing Mumble Client ######### [JJMumbleBot(5.1.1).General]:'NoneType' object is not subscriptable [JJMumbleBot(5.1.1).General]:'NoneType' object is not subscriptable
Could you post the full console output for the initialization? I'm trying to narrow down where this error is occurring.
Here is the full console output with verbose flag.
[JJMumbleBot(5.1.1).StartUp]:######### Initializing JJMumbleBot #########
[JJMumbleBot(5.1.1).Database]:######### Initializing Internal Database #########
[JJMumbleBot(5.1.1).Database]:######### Initialized Internal Database #########
[JJMumbleBot(5.1.1).StartUp]:######### Initialized Temporary Directories #########
[JJMumbleBot(5.1.1).StartUp]:Pseudo-GUI initialized.
[JJMumbleBot(5.1.1).StartUp]:######### Initialized PGUI #########
[JJMumbleBot(5.1.1).Database]:Deleted all commands in the database
[JJMumbleBot(5.1.1).Database]:Deleted all plugins_help in the database
[JJMumbleBot(5.1.1).Database]:Deleted all plugins in the database
[JJMumbleBot(5.1.1).StartUp]:######### Initializing Core Plugins #########
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: echo:echo_clbk:cmd_echo
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: msg:msg_clbk:cmd_msg
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: kickuser:kickuser_clbk:cmd_kickuser
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: banuser:banuser_clbk:cmd_banuser
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: muteuser:muteuser_clbk:cmd_muteuser
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: unmuteuser:unmuteuser_clbk:cmd_unmuteuser
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: deafenuser:deafenuser_clbk:cmd_deafenuser
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: undeafenuser:undeafenuser_clbk:cmd_undeafenuser
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: log:log_clbk:cmd_log
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: showplugins:showplugins_clbk:cmd_showplugins
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: aliassearch:aliassearch_clbk:cmd_aliassearch
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: cmdsearch:cmdsearch_clbk:cmd_cmdsearch
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: move:move_clbk:cmd_move
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: makechannel:makechannel_clbk:cmd_makechannel
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: makepermanentchannel:makepermanentchannel_clbk:cmd_makepermanentchannel
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: leave:leave_clbk:cmd_leave
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: removechannel:removechannel_clbk:cmd_removechannel
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: renamechannel:renamechannel_clbk:cmd_renamechannel
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: joinme:joinme_clbk:cmd_joinme
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: joinuser:joinuser_clbk:cmd_joinuser
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: moveuser:moveuser_clbk:cmd_moveuser
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: showprivileges:showprivileges_clbk:cmd_showprivileges
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: setprivileges:setprivileges_clbk:cmd_setprivileges
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: addprivileges:addprivileges_clbk:cmd_addprivileges
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: showblacklist:showblacklist_clbk:cmd_showblacklist
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: blacklistuser:blacklistuser_clbk:cmd_blacklistuser
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: whitelistuser:whitelistuser_clbk:cmd_whitelistuser
[JJMumbleBot(5.1.1).StartUp]:Bot Commands v5.1.0 Plugin Initialized.
[JJMumbleBot(5.1.1).Database]:Inserted new plugin into the database: bot_commands
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: bot_commands-seek-3
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: bot_commands-echo-2
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: bot_commands-log-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: bot_commands-kickuser-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: bot_commands-banuser-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: bot_commands-moveuser-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: bot_commands-muteuser-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: bot_commands-unmuteuser-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: bot_commands-deafenuser-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: bot_commands-undeafenuser-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: bot_commands-showplugins-2
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: bot_commands-aliassearch-2
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: bot_commands-cmdsearch-2
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: bot_commands-makechannel-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: bot_commands-makepermanentchannel-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: bot_commands-removechannel-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: bot_commands-renamechannel-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: bot_commands-move-2
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: bot_commands-joinme-2
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: bot_commands-joinuser-2
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: bot_commands-msg-2
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: bot_commands-leave-2
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: bot_commands-showprivileges-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: bot_commands-setprivileges-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: bot_commands-addprivileges-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: bot_commands-showblacklist-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: bot_commands-blacklistuser-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: bot_commands-whitelistuser-4
[JJMumbleBot(5.1.1).Database]:Inserted new plugin help data into the database: bot_commands
[JJMumbleBot(5.1.1).Database]:Updated plugin help text in the database: bot_commands
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: setloginsound:setloginsound_clbk:cmd_setloginsound
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: getloginsound:getloginsound_clbk:cmd_getloginsound
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: clearloginsound:clearloginsound_clbk:cmd_clearloginsound
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: setdefaultloginsound:setdefaultloginsound_clbk:cmd_setdefaultloginsound
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: toggleloginsounds:toggleloginsounds_clbk:cmd_toggleloginsounds
[JJMumbleBot(5.1.1).Command]:Registered server_tools plugin callbacks
[JJMumbleBot(5.1.1).StartUp]:Server Tools v5.0.0 Plugin Initialized.
[JJMumbleBot(5.1.1).Database]:Inserted new plugin into the database: server_tools
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: server_tools-setloginsound-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: server_tools-getloginsound-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: server_tools-clearloginsound-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: server_tools-toggleloginsounds-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: server_tools-setdefaultloginsound-4
[JJMumbleBot(5.1.1).Database]:Inserted new plugin help data into the database: server_tools
[JJMumbleBot(5.1.1).Database]:Updated plugin help text in the database: server_tools
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: audiostatus:audiostatus_clbk:cmd_audiostatus
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: queue:queue_clbk:cmd_queue
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: pause:pause_clbk:cmd_pause
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: resume:resume_clbk:cmd_resume
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: playing:playing_clbk:cmd_playing
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: replay:replay_clbk:cmd_replay
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: shuffle:shuffle_clbk:cmd_shuffle
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: skip:skip_clbk:cmd_skip
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: stop:stop_clbk:cmd_stop
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: clear:clear_clbk:cmd_clear
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: loop:loop_clbk:cmd_loop
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: remove:remove_clbk:cmd_remove
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: seek:seek_clbk:cmd_seek
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: volume:volume_clbk:cmd_volume
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: duckaudio:duckaudio_clbk:cmd_duckaudio
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: duckvolume:duckvolume_clbk:cmd_duckvolume
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: duckthreshold:duckthreshold_clbk:cmd_duckthreshold
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: duckdelay:duckdelay_clbk:cmd_duckdelay
[JJMumbleBot(5.1.1).StartUp]:Audio Commands v5.0.0 Plugin Initialized.
[JJMumbleBot(5.1.1).Database]:Inserted new plugin into the database: audio_commands
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: audio_commands-audiostatus-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: audio_commands-shuffle-3
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: audio_commands-queue-2
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: audio_commands-pause-3
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: audio_commands-resume-3
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: audio_commands-playing-3
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: audio_commands-replay-3
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: audio_commands-skip-3
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: audio_commands-stop-3
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: audio_commands-clear-3
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: audio_commands-loop-3
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: audio_commands-remove-3
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: audio_commands-volume-3
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: audio_commands-duckaudio-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: audio_commands-duckvolume-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: audio_commands-duckthreshold-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: audio_commands-duckdelay-4
[JJMumbleBot(5.1.1).Database]:Inserted new plugin help data into the database: audio_commands
[JJMumbleBot(5.1.1).Database]:Updated plugin help text in the database: audio_commands
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: setwhisperuser:setwhisperuser_clbk:cmd_setwhisperuser
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: setwhisperusers:setwhisperusers_clbk:cmd_setwhisperusers
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: addwhisperuser:addwhisperuser_clbk:cmd_addwhisperuser
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: setwhisperme:setwhisperme_clbk:cmd_setwhisperme
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: setwhisperchannel:setwhisperchannel_clbk:cmd_setwhisperchannel
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: clearwhisper:clearwhisper_clbk:cmd_clearwhisper
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: removewhisperuser:removewhisperuser_clbk:cmd_removewhisperuser
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: getwhisper:getwhisper_clbk:cmd_getwhisper
[JJMumbleBot(5.1.1).StartUp]:Whisper v5.0.0 Plugin Initialized.
[JJMumbleBot(5.1.1).Database]:Inserted new plugin into the database: whisper
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: whisper-setwhisperuser-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: whisper-setwhisperchannel-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: whisper-clearwhisper-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: whisper-setwhisperme-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: whisper-getwhisper-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: whisper-setwhisperusers-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: whisper-addwhisperuser-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: whisper-removewhisperuser-4
[JJMumbleBot(5.1.1).Database]:Inserted new plugin help data into the database: whisper
[JJMumbleBot(5.1.1).Database]:Updated plugin help text in the database: whisper
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: stopplugin:stopplugin_clbk:cmd_stopplugin
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: startplugin:startplugin_clbk:cmd_startplugin
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: restartplugin:restartplugin_clbk:cmd_restartplugin
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: sleep:sleep_clbk:cmd_sleep
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: version:version_clbk:cmd_version
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: about:about_clbk:cmd_about
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: uptime:uptime_clbk:cmd_uptime
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: exit:exit_clbk:cmd_exit
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: restart:restart_clbk:cmd_restart
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: saferestart:saferestart_clbk:cmd_saferestart
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: restartplugins:restartplugins_clbk:cmd_restartplugins
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: setcomment:setcomment_clbk:cmd_setcomment
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: resetcomment:resetcomment_clbk:cmd_resetcomment
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: pguistresstest:pguistresstest_clbk:cmd_pguistresstest
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: help:help_clbk:cmd_help
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: setalias:setalias_clbk:cmd_setalias
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: aliases:aliases_clbk:cmd_aliases
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: removealias:removealias_clbk:cmd_removealias
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: clearaliases:clearaliases_clbk:cmd_clearaliases
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: clearhistory:clearhistory_clbk:cmd_clearhistory
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: history:history_clbk:cmd_history
[JJMumbleBot(5.1.1).StartUp]:Core Commands v5.0.0 Plugin Initialized.
[JJMumbleBot(5.1.1).Database]:Inserted new plugin into the database: core_commands
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: core_commands-stopplugin-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: core_commands-startplugin-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: core_commands-restartplugin-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: core_commands-sleep-2
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: core_commands-version-1
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: core_commands-about-1
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: core_commands-uptime-1
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: core_commands-exit-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: core_commands-restart-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: core_commands-saferestart-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: core_commands-restartplugins-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: core_commands-setcomment-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: core_commands-resetcomment-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: core_commands-pguistresstest-5
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: core_commands-help-1
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: core_commands-setalias-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: core_commands-aliases-1
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: core_commands-removealias-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: core_commands-clearaliases-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: core_commands-history-2
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: core_commands-clearhistory-4
[JJMumbleBot(5.1.1).Database]:Inserted new plugin help data into the database: core_commands
[JJMumbleBot(5.1.1).Database]:Updated plugin help text in the database: core_commands
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: stopwebserver:stopwebserver_clbk:cmd_stopwebserver
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: startwebserver:startwebserver_clbk:cmd_startwebserver
[JJMumbleBot(5.1.1).WebInterface]:######### Configuring Web Interface #########
[JJMumbleBot(5.1.1).General]:UNIQUE constraint failed: users.name
[JJMumbleBot(5.1.1).WebInterface]:Error generating web interface SSL certificate!
[JJMumbleBot(5.1.1).WebInterface]:######### Configured Web Interface #########
[JJMumbleBot(5.1.1).WebInterface]:Initialized API Server on: 172.16.69.18:7000/api/
[JJMumbleBot(5.1.1).WebInterface]:Server API documentation can be found on: 172.16.69.18:7000/docs/
[JJMumbleBot(5.1.1).WebInterface]:Initialized Web Application on: 172.16.69.18:7000/
[JJMumbleBot(5.1.1).StartUp]:WebServer v5.1.0 Plugin Initialized.
[JJMumbleBot(5.1.1).Database]:Inserted new plugin into the database: web_server
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: web_server-stopwebserver-5
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: web_server-startwebserver-5
[JJMumbleBot(5.1.1).Database]:Inserted new plugin help data into the database: web_server
[JJMumbleBot(5.1.1).Database]:Updated plugin help text in the database: web_server
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: updatedependency:updatedependency_clbk:cmd_updatedependency
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: checkforupdates:checkforupdates_clbk:cmd_checkforupdates
[JJMumbleBot(5.1.1).StartUp]:Auto-Updater v5.0.0 Plugin Initialized.
[JJMumbleBot(5.1.1).Database]:Inserted new plugin into the database: auto_updater
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: auto_updater-updatedependency-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: auto_updater-checkforupdates-4
[JJMumbleBot(5.1.1).Database]:Inserted new plugin help data into the database: auto_updater
[JJMumbleBot(5.1.1).Database]:Updated plugin help text in the database: auto_updater
[JJMumbleBot(5.1.1).StartUp]:######### Core Plugins Initialized #########
[JJMumbleBot(5.1.1).StartUp]:######### Initializing Extension Plugins #########
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: customroll:customroll_clbk:cmd_customroll
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: coinflip:coinflip_clbk:cmd_coinflip
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: d4roll:d4roll_clbk:cmd_d4roll
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: d6roll:d6roll_clbk:cmd_d6roll
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: d8roll:d8roll_clbk:cmd_d8roll
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: d10roll:d10roll_clbk:cmd_d10roll
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: d12roll:d12roll_clbk:cmd_d12roll
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: d16roll:d16roll_clbk:cmd_d16roll
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: d20roll:d20roll_clbk:cmd_d20roll
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: d100roll:d100roll_clbk:cmd_d100roll
[JJMumbleBot(5.1.1).StartUp]:Randomizer v5.0.0 Plugin Initialized.
[JJMumbleBot(5.1.1).Database]:Inserted new plugin into the database: randomizer
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: randomizer-coinflip-1
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: randomizer-d4roll-1
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: randomizer-d6roll-1
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: randomizer-d8roll-1
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: randomizer-d10roll-1
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: randomizer-d12roll-1
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: randomizer-d16roll-1
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: randomizer-d20roll-1
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: randomizer-d100roll-1
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: randomizer-customroll-1
[JJMumbleBot(5.1.1).Database]:Inserted new plugin help data into the database: randomizer
[JJMumbleBot(5.1.1).Database]:Updated plugin help text in the database: randomizer
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: tts:tts_clbk:cmd_tts
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: ttsplay:ttsplay_clbk:cmd_ttsplay
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: ttsplayquiet:ttsplayquiet_clbk:cmd_ttsplayquiet
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: ttslist:ttslist_clbk:cmd_ttslist
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: ttsdownload:ttsdownload_clbk:cmd_ttsdownload
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: ttsdelete:ttsdelete_clbk:cmd_ttsdelete
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: ttsvoices:ttsvoices_clbk:cmd_ttsvoices
[JJMumbleBot(5.1.1).General]:Text To Speech v5.0.0 Plugin Initialized.
[JJMumbleBot(5.1.1).Database]:Inserted new plugin into the database: text_to_speech
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: text_to_speech-tts-3
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: text_to_speech-ttsvoices-3
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: text_to_speech-ttsplay-3
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: text_to_speech-ttsplayquiet-3
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: text_to_speech-ttslist-3
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: text_to_speech-ttsdownload-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: text_to_speech-ttsdelete-4
[JJMumbleBot(5.1.1).Database]:Inserted new plugin help data into the database: text_to_speech
[JJMumbleBot(5.1.1).Database]:Updated plugin help text in the database: text_to_speech
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: sb:sb_clbk:cmd_sb
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: sbnow:sbnow_clbk:cmd_sbnow
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: sbquiet:sbquiet_clbk:cmd_sbquiet
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: sbquietnow:sbquietnow_clbk:cmd_sbquietnow
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: sblist:sblist_clbk:cmd_sblist
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: sbdownload:sbdownload_clbk:cmd_sbdownload
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: sbsearch:sbsearch_clbk:cmd_sbsearch
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: sbdelete:sbdelete_clbk:cmd_sbdelete
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: sbrandom:sbrandom_clbk:cmd_sbrandom
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: sbrandomquiet:sbrandomquiet_clbk:cmd_sbrandomquiet
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: sbrandomquietnow:sbrandomquietnow_clbk:cmd_sbrandomquietnow
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: sbrandomnow:sbrandomnow_clbk:cmd_sbrandomnow
[JJMumbleBot(5.1.1).StartUp]:Sound Board v5.0.0 Plugin Initialized.
[JJMumbleBot(5.1.1).Database]:Inserted new plugin into the database: sound_board
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: sound_board-sb-2
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: sound_board-sbnow-2
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: sound_board-sbquiet-3
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: sound_board-sbquietnow-3
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: sound_board-sbrandom-3
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: sound_board-sbrandomquiet-3
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: sound_board-sbrandomquietnow-3
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: sound_board-sbrandomnow-3
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: sound_board-sbsearch-2
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: sound_board-sblist-2
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: sound_board-sbdownload-4
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: sound_board-sbdelete-4
[JJMumbleBot(5.1.1).Database]:Inserted new plugin help data into the database: sound_board
[JJMumbleBot(5.1.1).Database]:Updated plugin help text in the database: sound_board
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: link:link_clbk:cmd_link
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: linkfront:linkfront_clbk:cmd_linkfront
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: ytplaylist:ytplaylist_clbk:cmd_ytplaylist
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: ytsearch:ytsearch_clbk:cmd_ytsearch
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: ytplay:ytplay_clbk:cmd_ytplay
[JJMumbleBot(5.1.1).General]:Registered audio interface callback media|crc32|clbk
[JJMumbleBot(5.1.1).General]:Registered audio interface callback media|download_thumbnail|clbk
[JJMumbleBot(5.1.1).General]:Registered audio interface callback media|get_command_token|clbk
[JJMumbleBot(5.1.1).General]:Registered audio interface callback media|get_playlist_info|clbk
[JJMumbleBot(5.1.1).General]:Registered audio interface callback media|get_search_results|clbk
[JJMumbleBot(5.1.1).General]:Registered audio interface callback media|get_video_info|clbk
[JJMumbleBot(5.1.1).General]:Registered audio interface callback media|log|clbk
[JJMumbleBot(5.1.1).General]:Registered audio interface callback media|on_next_track|clbk
[JJMumbleBot(5.1.1).General]:Registered audio interface callback media|on_play|clbk
[JJMumbleBot(5.1.1).General]:Registered audio interface callback media|on_reset|clbk
[JJMumbleBot(5.1.1).General]:Registered audio interface callback media|on_skip|clbk
[JJMumbleBot(5.1.1).General]:Registered audio interface callback media|on_stop|clbk
[JJMumbleBot(5.1.1).General]:Registered audio interface callback media|song_integrity_check|clbk
[JJMumbleBot(5.1.1).StartUp]:Media v5.0.0 Plugin Initialized.
[JJMumbleBot(5.1.1).Database]:Inserted new plugin into the database: media
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: media-link-3
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: media-linkfront-3
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: media-ytplaylist-3
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: media-ytsearch-3
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: media-ytplay-3
[JJMumbleBot(5.1.1).Database]:Inserted new plugin help data into the database: media
[JJMumbleBot(5.1.1).Database]:Updated plugin help text in the database: media
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: post:post_clbk:cmd_post
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: imgsearch:imgsearch_clbk:cmd_imgsearch
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: img:img_clbk:cmd_img
[JJMumbleBot(5.1.1).StartUp]:Registered plugin command: imglist:imglist_clbk:cmd_imglist
[JJMumbleBot(5.1.1).StartUp]:Images v5.0.0 Plugin Initialized.
[JJMumbleBot(5.1.1).Database]:Inserted new plugin into the database: images
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: images-post-3
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: images-imgsearch-2
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: images-img-2
[JJMumbleBot(5.1.1).Database]:Inserted new command into the database: images-imglist-2
[JJMumbleBot(5.1.1).Database]:Inserted new plugin help data into the database: images
[JJMumbleBot(5.1.1).Database]:Updated plugin help text in the database: images
[JJMumbleBot(5.1.1).StartUp]:######### Extension Plugins Initialized #########
[JJMumbleBot(5.1.1).StartUp]:######### Initializing Mumble Client #########
[JJMumbleBot(5.1.1).General]:'NoneType' object is not subscriptable
[JJMumbleBot(5.1.1).General]:'NoneType' object is not subscriptable
[JJMumbleBot(5.1.1).General]:'NoneType' object is not subscriptable
[JJMumbleBot(5.1.1).General]:'NoneType' object is not subscriptable
[JJMumbleBot(5.1.1).StartUp]:NEXTGENBOTTY is Online.
[JJMumbleBot(5.1.1).StartUp]:######### Initialized Mumble Client #########
Do we have any update on this :)?
Hi, sorry for the delays! I'm working through a lot of university exams/assignments right now. I'll look into this further as soon as possible.
I'm having trouble locating the issue at the moment. I'll put up the "help-wanted" tag just in case someone finds something that I'm missing. I'll revisit this issue as soon as possible. Please let me know if you run into any additional issues apart from the web interface.
Facing the same issue, not really sure how to help, though
Describe the bug The problem here is with the webserver and websockets, giving this error when entering the website:
Tried installing both the Docker version and the standalone version on a Linux VM. Tried Latest, 5.1.1 and 5.1.0. I can see "Command History" in on the website, but "Latest Commands" and "Channels" doesnt seem to work, which I think is related to the above error. The Audio tab on the website is not working either, it wont display anything, however the buttons seems to work for lowering volume etc. The Debug tab only shows this: "root":{}0 items If I change anything under Active plugins it will stay but it doesnt seem to take effect, if I enable HTTPS for example the website still runs HTTP.
To Reproduce Steps to reproduce the behavior:
Expected behavior Beeing able to use all functionallity of the website
Desktop (please complete the following information):