We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6e8965 commit 2680187Copy full SHA for 2680187
sqldev/src/main/java/org/utplsql/sqldev/model/URLTools.xtend
@@ -22,7 +22,7 @@ class URLTools {
22
val p = Pattern.compile("(sqldev.nav:)([^/]+)(//)?")
23
val m = p.matcher(url.toString)
24
if (m.find) {
25
- return m.group(2).replace("IdeConnections%2523", "IdeConnections%23")
+ return m.group(2).replace("IdeConnections%2523", "IdeConnections%23").replace("%2B", "+")
26
} else {
27
return ""
28
}
0 commit comments