Skip to content

Commit 2680187

Browse files
fixes #16 - Menu option "Run utPLSQL test" always disabled
1 parent c6e8965 commit 2680187

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sqldev/src/main/java/org/utplsql/sqldev/model/URLTools.xtend

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class URLTools {
2222
val p = Pattern.compile("(sqldev.nav:)([^/]+)(//)?")
2323
val m = p.matcher(url.toString)
2424
if (m.find) {
25-
return m.group(2).replace("IdeConnections%2523", "IdeConnections%23")
25+
return m.group(2).replace("IdeConnections%2523", "IdeConnections%23").replace("%2B", "+")
2626
} else {
2727
return ""
2828
}

0 commit comments

Comments
 (0)