Skip to content
This repository has been archived by the owner on Aug 30, 2024. It is now read-only.

Commit

Permalink
Merge remote-tracking branch 'origin/dev-sjones-euca-7315'
Browse files Browse the repository at this point in the history
  • Loading branch information
sjones4 committed Mar 2, 2015
2 parents e232d9e + ca267d8 commit 0f9fc64
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public boolean checkAccepts( final HttpRequest message ) {
String query = new String( read );
buffer.resetReaderIndex( );
for ( String p : query.split( "&" ) ) {
String[] splitParam = p.split( "=" );
String[] splitParam = p.split( "=", 2 );
String lhs = splitParam[0];
String rhs = splitParam.length == 2 ? splitParam[1] : null;
try {
Expand Down

0 comments on commit 0f9fc64

Please sign in to comment.