From 47c96458924cf5d0b9bc184093cdf733933045ef Mon Sep 17 00:00:00 2001 From: Eugene Vigdorchik Date: Tue, 12 Jun 2012 11:06:03 +0400 Subject: [PATCH] Use raw method not to unescape special characters. Fixes #478 --- util/io/RichURI.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/io/RichURI.scala b/util/io/RichURI.scala index 94e4de29c..673b8ac8f 100644 --- a/util/io/RichURI.scala +++ b/util/io/RichURI.scala @@ -21,7 +21,7 @@ class RichURI(uri: URI) else uri - def hasMarkerScheme = new URI(uri.getSchemeSpecificPart).getScheme ne null + def hasMarkerScheme = new URI(uri.getRawSchemeSpecificPart).getScheme ne null def withoutMarkerScheme = {