Skip to content

Commit 430976a

Browse files
committed
fix doPut path creation
1 parent cca00a4 commit 430976a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exist-core/src/main/java/org/exist/http/servlets/EXistServlet.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ protected void doPut(final HttpServletRequest request, final HttpServletResponse
135135
try (final DBBroker broker = getPool().get(Optional.of(user));
136136
final Txn transaction = getPool().getTransactionManager().beginTransaction()) {
137137

138-
final XmldbURI dbpath = XmldbURI.createInternal(path);
138+
final XmldbURI dbpath = XmldbURI.create(path);
139139
try (final Collection collection = broker.getCollection(dbpath)) {
140140
if (collection != null) {
141141
transaction.abort();

0 commit comments

Comments
 (0)