Added missing alert on settings change and fixed missing palette argument

This commit is contained in:
Dionysus 2023-06-28 14:19:35 -04:00
parent b6abd6d6f9
commit 9ccfe4aa84
Signed by: acidvegas
GPG Key ID: EF4B922DB85DC9DE
2 changed files with 2 additions and 1 deletions

View File

@ -92,7 +92,7 @@ def convert_image(image, max_line_len, img_width, palette):
if len(buf[-1].encode('utf-8', 'ignore')) > max_line_len:
if img_width - 5 < 10:
raise Exception('internal error')
return convert_image(image, max_line_len, img_width-5)
return convert_image(image, max_line_len, img_width-5, palette)
return buf
def hex_to_rgb(color):

View File

@ -329,6 +329,7 @@ class Bot():
await self.irc_error(chan, 'invalid option', 'must be on or off')
else:
self.settings[setting] = option
await self.sendmsg(chan, color('OK', light_green))
else:
await self.irc_error(chan, 'invalid setting', setting)
elif len(args) == 2: