1
0
mirror of https://github.com/instaloader/instaloader.git synced 2024-07-07 11:42:38 +02:00

Make profile biographies be unicode normalized

This commit is contained in:
MiguelX413 2022-07-15 12:14:52 -07:00 committed by Alexander Graf
parent 8784ac7d9b
commit fb14c2699e

View File

@ -901,7 +901,7 @@ class Profile:
@property
def biography(self) -> str:
return self._metadata('biography')
return normalize("NFC", self._metadata('biography'))
@property
def blocked_by_viewer(self) -> bool: