🐛 补充主题渲染时遗漏的转发推文中的图片 (#554)

This commit is contained in:
Azide
2024-06-12 23:12:01 +08:00
committed by GitHub
parent d4f4868a79
commit 83bea507ab
6 changed files with 77 additions and 15 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

+5
View File
@@ -14,3 +14,8 @@ def get_file(file_name: str):
with open(path / file_name, encoding="utf8") as f:
file_text = f.read()
return file_text
def get_bytes(file_name: str):
with open(path / file_name, "rb") as f:
return f.read()