Fixed IndexError in runCommand

This occurs if someone types `[COMMAND>Node]` without a command. This is fixed by adding checks in `parseMessage` that prevents `runCommand` from being ran if this is the case.
This commit is contained in:
Innovation 2022-07-13 09:00:59 +01:00
parent 8bc5499c50
commit 05f798283b

View file

@ -1,7 +1,4 @@
#!/bin/python3.7 #!/bin/python3.7
# (C) Innovation Science, Katie Martin, 2022
import asyncio import asyncio
from nio import (AsyncClient, RoomMessageText) from nio import (AsyncClient, RoomMessageText)
#import os #import os
@ -116,7 +113,9 @@ async def parseMessage(room, event):
# I hate you Python. # I hate you Python.
bodyPreparse = (event.body).split(']') bodyPreparse = (event.body).split(']')
if (bodyPreparse[0] == ('[COMMAND>' + nodename)): if (bodyPreparse[0] == ('[COMMAND>' + nodename)):
await runCommand(event.sender, bodyPreparse[1]) if (len(bodyPreparse) >= 2):
if (bodyPreparse[1] != ''):
await runCommand(event.sender, bodyPreparse[1])
async def sendCommand(reciever, command): async def sendCommand(reciever, command):
await client.room_send( await client.room_send(