|
|
|
|
@ -236,7 +236,7 @@ def profile_picture_reactions(profile, user, all_pictures, first_user=False, mod |
|
|
|
|
# Gå igenom alla som reagerat och för in i arango |
|
|
|
|
for li in profile.viewing().find_all("li"): |
|
|
|
|
friend = Friend(user.username, mode) |
|
|
|
|
if "See more" in li.text: |
|
|
|
|
if "see more" in li.text.lower(): |
|
|
|
|
continue |
|
|
|
|
try: |
|
|
|
|
friend_html = li.find("h3").find("a") |
|
|
|
|
@ -259,7 +259,7 @@ def profile_picture_reactions(profile, user, all_pictures, first_user=False, mod |
|
|
|
|
write_error( |
|
|
|
|
1, |
|
|
|
|
e=e, |
|
|
|
|
soup=profile.viewing(), |
|
|
|
|
soup=str(li), |
|
|
|
|
user=user.username, |
|
|
|
|
traceback=traceback.format_exc(), |
|
|
|
|
) |
|
|
|
|
|