Fix #1348, go back to converting plus "+" to space
Not doing this conflicts with some http clients and proxies. Use the alternative url-safe character '!' instead for disambiguating resource embedding.
This commit is contained in:
committed by
Steve Chávez
parent
e83144ce7f
commit
ae9e27a0c7
@@ -131,7 +131,7 @@ pRelationSelect = lexeme $ try ( do
|
||||
alias <- optionMaybe ( try(pFieldName <* aliasSeparator) )
|
||||
fld <- pField
|
||||
relationDetail <- optionMaybe (
|
||||
try ( char '+' *> pFieldName ) <|>
|
||||
try ( char '!' *> pFieldName ) <|>
|
||||
try ( char '.' *> pFieldName ) -- TODO deprecated, remove in next major version
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user