summaryrefslogtreecommitdiffstats
path: root/webapp/actions
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2016-11-10 09:25:43 -0500
committerHarrison Healey <harrisonmhealey@gmail.com>2016-11-10 09:25:43 -0500
commit2fdb33042a118831de60d96e7138209e973e0d65 (patch)
tree59ae549e71e6573f63bcf21eb94c5031e3ea5245 /webapp/actions
parent41b31b4c92932a74bb8cc9fbe6b64d327d903a37 (diff)
downloadchat-2fdb33042a118831de60d96e7138209e973e0d65.tar.gz
chat-2fdb33042a118831de60d96e7138209e973e0d65.tar.bz2
chat-2fdb33042a118831de60d96e7138209e973e0d65.zip
Load profiles for search results (#4519)
Diffstat (limited to 'webapp/actions')
-rw-r--r--webapp/actions/post_actions.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/webapp/actions/post_actions.jsx b/webapp/actions/post_actions.jsx
index c2cc211b7..9599a9a77 100644
--- a/webapp/actions/post_actions.jsx
+++ b/webapp/actions/post_actions.jsx
@@ -232,7 +232,7 @@ export function loadPostsAfter(postId, offset, numPost, isPost) {
);
}
-function loadProfilesForPosts(posts) {
+export function loadProfilesForPosts(posts) {
const profilesToLoad = {};
for (const pid in posts) {
if (!posts.hasOwnProperty(pid)) {