Skip to content

Commit

Permalink
WAUrl can't parse query fields with no value
Browse files Browse the repository at this point in the history
- fixes #909
  • Loading branch information
marschall committed Sep 8, 2018
1 parent 292cbce commit aea5118
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ parseQuery: aString from: queryStart to: queryEnd
parameterEnd := parameterEnd > 0
ifTrue: [ parameterEnd min: queryEnd ]
ifFalse: [ queryEnd ].
(nameEnd > 0 and: [ nameEnd < queryEnd ])
(nameEnd > 0 and: [ nameEnd < parameterEnd ])
ifTrue: [
self
addField: (self class decodePercentAndPlus: aString from: parameterStart to: nameEnd)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"instance" : {
"host" : "jf 2/14/2010 23:47",
"parseQuery:from:to:" : "pmm 8/22/2014 09:32",
"parseQuery:from:to:" : "pmm 9/8/2018 13:33",
"printOn:" : "jf 9/30/2009 00:27",
"withoutQuery" : "lr 2/27/2010 11:06",
"encodeQueryOn:" : "pmm 6/26/2011 14:27",
Expand Down
4 changes: 2 additions & 2 deletions repository/Seaside-Core.package/monticello.meta/version

Large diffs are not rendered by default.

0 comments on commit aea5118

Please sign in to comment.