sanitize inputs
This commit is contained in:
parent
052df7d273
commit
6ef592823f
1 changed files with 2 additions and 2 deletions
|
|
@ -2,7 +2,7 @@ import os
|
||||||
import io
|
import io
|
||||||
import base64
|
import base64
|
||||||
import time
|
import time
|
||||||
import json
|
import html
|
||||||
import asyncssh
|
import asyncssh
|
||||||
from PIL import Image, PngImagePlugin
|
from PIL import Image, PngImagePlugin
|
||||||
from discord.ext import commands, tasks
|
from discord.ext import commands, tasks
|
||||||
|
|
@ -36,7 +36,7 @@ class PhixxyCom(commands.Cog):
|
||||||
if filename in line:
|
if filename in line:
|
||||||
prompt = line[line.index("Prompt: ") + 7:line.index("Filename: ")]
|
prompt = line[line.index("Prompt: ") + 7:line.index("Filename: ")]
|
||||||
prompt = ''.join(prompt.rsplit(',', 1)) # Remove the last comma
|
prompt = ''.join(prompt.rsplit(',', 1)) # Remove the last comma
|
||||||
return prompt
|
return html.escape(prompt)
|
||||||
return "Unknown Prompt"
|
return "Unknown Prompt"
|
||||||
|
|
||||||
async def upload_sftp(self, local_filename, server_folder, server_filename):
|
async def upload_sftp(self, local_filename, server_folder, server_filename):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue