StackTrace:
2008-12-09 13:06:12,285 ERROR http-9080-Processor20
java.lang.NullPointerException
at com.google.code.facebookapi.ExtensibleClient.users_isAppUser
(ExtensibleClient.java:743)
Checking the source code of this method it is:
if ( cacheAppUser != null ) {
cacheAppUser = extractBoolean( callMethod
(FacebookMethod.USERS_IS_APP_USER ) );
}
return cacheAppUser;
While I think it should be:
if ( cacheAppUser == null ) {
cacheAppUser = extractBoolean( callMethod
(FacebookMethod.USERS_IS_APP_USER ) );
}
return cacheAppUser;
Original issue reported on code.google.com by tamer...@gmail.com on 9 Dec 2008 at 1:33
Original issue reported on code.google.com by
tamer...@gmail.com
on 9 Dec 2008 at 1:33