We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4ded92 commit ac6c2e3Copy full SHA for ac6c2e3
pyproject.toml
@@ -1,6 +1,6 @@
1
[tool.poetry]
2
name = "t-export"
3
-version = "0.1.3b2"
+version = "0.1.3b3"
4
description = "Telegram chats export tool."
5
authors = ["RuslanUC <dev_ruslan_uc@protonmail.com>"]
6
readme = "README.md"
texport/html/avatar.py
@@ -16,7 +16,7 @@ def to_html(self) -> str:
16
return f"""
17
<div class="pull_left userpic_wrap{forward}">
18
<div class="userpic userpic8" style="width: 42px; height: 42px">
19
- <div class="initials" style="line-height: 42px">{name[0]}</div>
+ <div class="initials" style="line-height: 42px">{name[0] if name is not None else "N"}</div>
20
</div>
21
22
"""
0 commit comments