Skip to content

Commit

Permalink
replace with URL#toExternalForm()
Browse files Browse the repository at this point in the history
  • Loading branch information
marevol committed May 23, 2024
1 parent d5cbac4 commit ee1d586
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ protected ResponseData getResponseData(final String uri, final boolean includeCo
final SmbFile[] files = file.listFiles();
if (files != null) {
for (final SmbFile f : files) {
final String chileUri = f.toString();
final String chileUri = f.getURL().toExternalForm();
requestDataSet.add(RequestDataBuilder.newRequestData().get().url(chileUri).build());
}
}
Expand Down

0 comments on commit ee1d586

Please sign in to comment.