resolve method name collision, getPostsFromSet -> getPostSummariesFromSet

This commit is contained in:
barisusakli
2015-05-11 15:43:57 -04:00
parent d11bfab275
commit dce9a19882
3 changed files with 5 additions and 5 deletions

View File

@@ -538,7 +538,7 @@ function loadMorePosts(set, uid, data, callback) {
var start = Math.max(0, parseInt(data.after, 10)),
stop = start + 9;
posts.getPostsFromSet(set, uid, start, stop, callback);
posts.getPostSummariesFromSet(set, uid, start, stop, callback);
}
SocketPosts.getRecentPosts = function(socket, data, callback) {