diff --git a/src/parser.nim b/src/parser.nim index e2e761d..1bcbf5a 100644 --- a/src/parser.nim +++ b/src/parser.nim @@ -8,25 +8,25 @@ proc parsePopupProfile*(node: XmlNode): Profile = if profile.isNil: return result = Profile( - fullname: profile.getName(".fullname"), - username: profile.getUsername(".username"), - description: profile.getBio(".bio"), - userpic: profile.getAvatar(".ProfileCard-avatarImage"), - verified: isVerified(profile), - protected: isProtected(profile), - banner: getBanner(profile) + fullname: profile.getName(".fullname"), + username: profile.getUsername(".username"), + bio: profile.getBio(".bio"), + userpic: profile.getAvatar(".ProfileCard-avatarImage"), + verified: isVerified(profile), + protected: isProtected(profile), + banner: getBanner(profile) ) result.getPopupStats(profile) proc parseIntentProfile*(profile: XmlNode): Profile = result = Profile( - fullname: profile.getName("a.fn.url.alternate-context"), - username: profile.getUsername(".nickname"), - description: profile.getBio("p.note"), - userpic: profile.querySelector(".profile.summary").getAvatar("img.photo"), - verified: not profile.querySelector("li.verified").isNil, - protected: not profile.querySelector("li.protected").isNil, - banner: getBanner(profile) + fullname: profile.getName("a.fn.url.alternate-context"), + username: profile.getUsername(".nickname"), + bio: profile.getBio("p.note"), + userpic: profile.querySelector(".profile.summary").getAvatar("img.photo"), + verified: not profile.querySelector("li.verified").isNil, + protected: not profile.querySelector("li.protected").isNil, + banner: getBanner(profile) ) result.getIntentStats(profile) diff --git a/src/types.nim b/src/types.nim index a2807e8..5af33bf 100644 --- a/src/types.nim +++ b/src/types.nim @@ -8,7 +8,7 @@ db("cache.db", "", "", ""): Profile* = object username*: string fullname*: string - description*: string + bio*: string userpic*: string banner*: string following*: string diff --git a/src/views/user.nim b/src/views/user.nim index 1330cb2..2c34333 100644 --- a/src/views/user.nim +++ b/src/views/user.nim @@ -18,9 +18,9 @@
- #if profile.description.len > 0: -
-

${linkifyText(xmltree.escape(profile.description))}

+ #if profile.bio.len > 0: +
+

${linkifyText(xmltree.escape(profile.bio))}

#end if