summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Ostler <scottbot9000@gmail.com>2011-01-04 16:44:24 -0500
committerScott Ostler <scottbot9000@gmail.com>2011-01-04 16:44:24 -0500
commit7d68c6986c0ba08dcb4c2f3dcca318584021099c (patch)
tree42151e0ba911e56fef10177af9ab42847586d619
parent53d4542aa5c4165bd7e1b4ca5218ff62aaa51b8f (diff)
Fixed popular recips glitch
-rw-r--r--src/site.clj2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/site.clj b/src/site.clj
index ba9336b..5b20361 100644
--- a/src/site.clj
+++ b/src/site.clj
@@ -464,7 +464,7 @@ WHERE user_id IN
profile-nick (:nick user-info)
raw-dumps (fetch-popular-dumps-redis profile-nick (:nick session))
raw-dumps (filter #(> (:count %) 0) raw-dumps)
- recips [] ; (get-recips-from-msgs raw-dumps)
+ recips (map :nick (get-recips-from-msgs raw-dumps))
dumps (map process-message-for-output raw-dumps)]
(.setAttribute st "nick" profile-nick)
(.setAttribute st "mini_profile" (build-mini-profile user-info))