From ede56f111e81f85c4eb3dda8a44e0fc1bb0f2649 Mon Sep 17 00:00:00 2001 From: Karthik Ram Date: Mon, 26 Nov 2012 22:06:28 -0800 Subject: [PATCH] Forgot to return values from function. Closes issue #11 --- R/user_tag_stats.r | 1 + 1 file changed, 1 insertion(+) diff --git a/R/user_tag_stats.r b/R/user_tag_stats.r index bf6ca7f..aee4a03 100644 --- a/R/user_tag_stats.r +++ b/R/user_tag_stats.r @@ -19,4 +19,5 @@ if (!is(mc, "MendeleyCredentials")) tag_stats <- OAuthRequest(mc, "http://api.mendeley.com/oapi/library/tags/", , "GET") tag_stats <- fromJSON(tag_stats) + return(tag_stats) }