Skip to content

Commit

Permalink
Fix /me plugin bug
Browse files Browse the repository at this point in the history
  • Loading branch information
sgrove committed Feb 25, 2014
1 parent 0fdecf3 commit ceac8c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/omchaya/plugins.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
(defn slash-me [activity-pieces current-user-email users]
(if (= (first activity-pieces) "/me")
(let [user (get users current-user-email)]
(assoc-in activity-pieces [0] (:username user)))
(assoc-in (vec activity-pieces) [0] (:username user)))
activity-pieces))

(defn slash-play [activity-pieces]
Expand Down

0 comments on commit ceac8c7

Please sign in to comment.