Skip to content

Commit

Permalink
pass since= correctly.
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Newson committed Jun 8, 2011
1 parent b41bbb7 commit bea92df
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -49,7 +49,7 @@ private BigCouchUpdateSequence(final String encodedVector) {

@Override
public String appendSince(final String url) {
return url + "?since=" + since;
return url + "&since=" + since;
}

@Override
Expand Down Expand Up @@ -111,7 +111,7 @@ private CouchDbUpdateSequence(final String encodedIntegral) {

@Override
public String appendSince(final String url) {
return url + "?since=" + seq;
return url + "&since=" + seq;
}

@Override
Expand Down

0 comments on commit bea92df

Please sign in to comment.