fix: profile page empty bio error

This commit is contained in:
Jannat Patel
2024-09-17 11:48:49 +05:30
parent d1c88b306f
commit d1200d0fa9

View File

@@ -148,6 +148,7 @@ def get_meta(app_path):
as_dict=True, as_dict=True,
) )
if user.bio:
soup = BeautifulSoup(user.bio, "html.parser") soup = BeautifulSoup(user.bio, "html.parser")
user.bio = soup.get_text() user.bio = soup.get_text()