mirror of
https://github.com/yasirarism/MissKatyPyro.git
synced 2026-01-03 11:04:51 +00:00
Typo
This commit is contained in:
parent
f2d36e75b3
commit
9585da00ed
2 changed files with 15 additions and 4 deletions
|
|
@ -139,7 +139,7 @@ async def postToWeb(file, name):
|
||||||
|
|
||||||
data = {"message":"Added new HTML File","committer":{"name":"Yasir Aris M","email":"mail@yasir.eu.org"},"content": f"{fpath.decode('ascii')}"}
|
data = {"message":"Added new HTML File","committer":{"name":"Yasir Aris M","email":"mail@yasir.eu.org"},"content": f"{fpath.decode('ascii')}"}
|
||||||
|
|
||||||
response = await http.put(f"https://api.github.com/repos/yasirarism/HTMLPaste/contents/{name}", headers=headers, data=json.dumps(data))
|
response = await http.put(f"https://api.github.com/repos/yasirarism/HTMLPaste/contents/{name}.html", headers=headers, data=json.dumps(data))
|
||||||
return f"https://yasirarism.github.io/HTMLPaste/{name}"
|
return f"https://yasirarism.github.io/HTMLPaste/{name}"
|
||||||
|
|
||||||
async def getMediaWeb(title, text):
|
async def getMediaWeb(title, text):
|
||||||
|
|
@ -153,6 +153,9 @@ async def getMediaWeb(title, text):
|
||||||
f"<div>{text}</div></span>"
|
f"<div>{text}</div></span>"
|
||||||
with open(f"{fname}.html", 'w', encoding='utf-8') as f:
|
with open(f"{fname}.html", 'w', encoding='utf-8') as f:
|
||||||
f.write(hmtl_content.replace('{fileName}', f"{fname}.html").replace('{msg}', mssg))
|
f.write(hmtl_content.replace('{fileName}', f"{fname}.html").replace('{msg}', mssg))
|
||||||
res = await postToWeb(f"{fname}.html", fname)
|
try:
|
||||||
os.remove(f"{fname}.html")
|
res = await postToWeb(f"{fname}.html", fname)
|
||||||
return res
|
os.remove(f"{fname}.html")
|
||||||
|
return res
|
||||||
|
except:
|
||||||
|
return None
|
||||||
|
|
|
||||||
|
|
@ -55,6 +55,12 @@ async def mediainfo(client, message):
|
||||||
text_ = file_info.message_type
|
text_ = file_info.message_type
|
||||||
if CUSTOM_VIEW and GH_TOKEN is not None:
|
if CUSTOM_VIEW and GH_TOKEN is not None:
|
||||||
link = await getMediaWeb(title, body_text)
|
link = await getMediaWeb(title, body_text)
|
||||||
|
if not link:
|
||||||
|
try:
|
||||||
|
osremove(file_path)
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
return await message.reply("Failed to post mediainfo result.")
|
||||||
else:
|
else:
|
||||||
link = post_to_telegraph(title, body_text)
|
link = post_to_telegraph(title, body_text)
|
||||||
markup = InlineKeyboardMarkup([[InlineKeyboardButton(text=text_, url=link)]])
|
markup = InlineKeyboardMarkup([[InlineKeyboardButton(text=text_, url=link)]])
|
||||||
|
|
@ -83,6 +89,8 @@ async def mediainfo(client, message):
|
||||||
"""
|
"""
|
||||||
if CUSTOM_VIEW and GH_TOKEN is not None:
|
if CUSTOM_VIEW and GH_TOKEN is not None:
|
||||||
link = await getMediaWeb(title, body_text)
|
link = await getMediaWeb(title, body_text)
|
||||||
|
if not link:
|
||||||
|
return await message.reply("Failed to post mediainfo result.")
|
||||||
else:
|
else:
|
||||||
link = post_to_telegraph(title, body_text)
|
link = post_to_telegraph(title, body_text)
|
||||||
# siteurl = "https://spaceb.in/api/v1/documents/"
|
# siteurl = "https://spaceb.in/api/v1/documents/"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue