Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
histhub
linker
Commits
8b588b74
Commit
8b588b74
authored
Jun 13, 2019
by
Tobinsk
Browse files
Merge branch '2-error-encoding' into 'master'
Encode the url to prevent conflicts with neo4j Closes
#2
See merge request
!5
parents
ac266677
e070f89d
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/neo4j-stream-writer.ts
View file @
8b588b74
...
...
@@ -20,7 +20,8 @@ class Neo4jStreamWriter extends Writable {
* @returns {string}
*/
private
static
escape
(
param
:
string
)
{
return
jsesc
(
param
);
// BC: we change the nodenames....
return
jsesc
(
encodeURI
(
param
));
}
private
neo4j
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment