fix file uploads
This commit is contained in:
parent
ecd45f1d04
commit
1589f67cbc
2
main.py
2
main.py
|
@ -65,7 +65,7 @@ class bird_inst():
|
||||||
ctx["data"]["message"]["text"] = html.unescape(ctx["data"]["message"]["text"])
|
ctx["data"]["message"]["text"] = html.unescape(ctx["data"]["message"]["text"])
|
||||||
self.irc.sendraw(privmsg.build(self.config["irc_nick"], self.config["irc_chan"], ctx["data"]["message"]["name"]+": "+ctx["data"]["message"]["text"]).msg)
|
self.irc.sendraw(privmsg.build(self.config["irc_nick"], self.config["irc_chan"], ctx["data"]["message"]["name"]+": "+ctx["data"]["message"]["text"]).msg)
|
||||||
for f in ctx["data"]["message"]["files"]:
|
for f in ctx["data"]["message"]["files"]:
|
||||||
self.limiter.action(self.irc.sendraw, (privmsg.build(self.config["irc_nick"], self.config["irc_chan"], f"({ctx['name']} uploaded file: {self.httpendpoint}/storage/files/{f['name']})").msg,))
|
self.limiter.action(self.irc.sendraw, (privmsg.build(self.config["irc_nick"], self.config["irc_chan"], f"({ctx['data']['message']['name']} uploaded file: {self.httpendpoint}/storage/files/{f['name']})").msg,))
|
||||||
def handle_exit(self, ctx): pass
|
def handle_exit(self, ctx): pass
|
||||||
def handle_enter(self, ctx): pass
|
def handle_enter(self, ctx): pass
|
||||||
def handle_userLoaded(self, ctx): pass
|
def handle_userLoaded(self, ctx): pass
|
||||||
|
|
Loading…
Reference in New Issue