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:
parent
8bc5499c50
commit
05f798283b
|
@ -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(
|
||||||
|
|
Loading…
Reference in a new issue