Skip to content

Commit

Permalink
Copy change to output if bad login
Browse files Browse the repository at this point in the history
  • Loading branch information
konklone committed Sep 20, 2009
1 parent 1ad6fe3 commit dda7966
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/com/awesome/campfire/MainMenu.java
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ public void onCreate(Bundle savedInstanceState) {
session = cookieHeader.getValue();

} else {
output = "Not logged in, using email [" + email + "]- response body:\n";
output += EntityUtils.toString(response.getEntity());
output = "Not logged in, using email [" + email + "], redirected to";
output += "\n" + location;
}
} catch(ClientProtocolException e) {
output += "\n\nCPError: " + e.getMessage();
Expand Down

0 comments on commit dda7966

Please sign in to comment.