Skip to content

Commit

Permalink
Build fix for getWebDavUrl() return type
Browse files Browse the repository at this point in the history
  • Loading branch information
cnathe committed Dec 16, 2024
1 parent 83e559a commit ceaa623
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ private static Path createConfig(Path configTemplate, Path parentDir, Path jobDi
template = PageFlowUtil.getStreamContentsAsString(in);
}

String webdavUrl = FileContentService.get().getWebDavUrl(parentDir, container, FileContentService.PathType.full);
String webdavUrl = FileContentService.get().getWebDavUrl(parentDir, container, FileContentService.PathType.full).toString();
webdavUrl = StringUtils.stripEnd(webdavUrl, "/");

String substitutedContent = template.replace("${quant_spectra_dir}", "quant_spectra_dir = '" + webdavUrl + "'");
Expand Down

0 comments on commit ceaa623

Please sign in to comment.