Skip to content

Commit

Permalink
Make response address static, make it possible to use with Googles OA…
Browse files Browse the repository at this point in the history
…uth2
  • Loading branch information
mstahv committed Mar 17, 2014
1 parent d25fef4 commit b409b34
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion oauthpopup/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
<dependency>
<groupId>org.scribe</groupId>
<artifactId>scribe</artifactId>
<version>1.3.2</version>
<version>1.3.5</version>
</dependency>
</dependencies>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class OAuthData {

static long latestId = 0;
synchronized public String nextId() {
return ""+(++latestId);
return "1";
}

private List<OAuthListener> listeners = new CopyOnWriteArrayList<OAuthListener>();
Expand Down

0 comments on commit b409b34

Please sign in to comment.