[1mdiff --git a/user.py b/user.py[m
[1mindex cebe2ea..12ad553 100644[m
[1m--- a/user.py[m
[1m+++ b/user.py[m
[36m@@ -108,9 +108,9 @@[m [mdef user_actions(session):[m
return 59, 'Bad request'[m
action = found[1][m
post_id = found[3][m
[31m- u_name = urlparse.unquote(found[4])[m
[31m- u_sub = urlparse.unquote(found[5])[m
[31m- s_sub = urlparse.unquote(found[6])[m
[32m+[m[32m u_name = urlparse.unquote(found[4]) if found[4] else None[m
[32m+[m[32m u_sub = urlparse.unquote(found[5]) if found[5] else None[m
[32m+[m[32m s_sub = urlparse.unquote(found[6]) if found[6] else None[m
is_follow = action in ('follow', 'unfollow')[m
if u_name != None:[m
target_type = FOLLOW_USER if is_follow else MUTE_USER[m
text/plain
This content has been proxied by September (3851b).