diff options
Diffstat (limited to 'src/com/p4square/f1oauth/SecondPartyVerifier.java')
-rw-r--r-- | src/com/p4square/f1oauth/SecondPartyVerifier.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/p4square/f1oauth/SecondPartyVerifier.java b/src/com/p4square/f1oauth/SecondPartyVerifier.java index b1afcfa..9fb771f 100644 --- a/src/com/p4square/f1oauth/SecondPartyVerifier.java +++ b/src/com/p4square/f1oauth/SecondPartyVerifier.java @@ -79,7 +79,7 @@ public class SecondPartyVerifier implements Verifier { if (status.isSuccess()) { JacksonRepresentation<Map> entity = new JacksonRepresentation<Map>(response.getEntity(), Map.class); Map data = entity.getObject(); - return new F1User(user, data); + return new F1User(mHelper.getBaseUrl(), user, data); } else { throw new OAuthException(status); |