Skip to content

Commit

Permalink
Minor update
Browse files Browse the repository at this point in the history
  • Loading branch information
andrii-bodnar authored Sep 14, 2022
1 parent 872fd7d commit 8867426
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -137,14 +137,14 @@ public void act(Outputter out, PropertiesWithFiles pb, ProjectClient client) {
request = (pl != null)
? RequestBuilder.crowdinTranslationCreateProjectPseudoBuildForm(
branch.get().getId(), true, pl.getLengthCorrection(), pl.getPrefix(), pl.getSuffix(), pl.getCharTransformation())
: RequestBuilder.crowdinTranslationCreateProjectPseudoBuildForm(1L,
true, null, null, null, null);
: RequestBuilder.crowdinTranslationCreateProjectPseudoBuildForm(1L, true, null, null, null, null);
} else {
request = (pl != null)
? RequestBuilder.crowdinTranslationCreateProjectPseudoBuildForm(
true, pl.getLengthCorrection(), pl.getPrefix(), pl.getSuffix(), pl.getCharTransformation())
: RequestBuilder.crowdinTranslationCreateProjectPseudoBuildForm(true, null, null, null, null);
}

Pair<File, List<String>> downloadedFiles = this.download(request, client, pb.getBasePath());
for (FileBean fb : pb.getFiles()) {
Map<String, String> filesWithMapping = this.getFiles(fb, pb.getBasePath(), serverLanguageMapping, forLanguages, placeholderUtil, new ArrayList<>(serverSources.keySet()), pb.getPreserveHierarchy());
Expand Down

0 comments on commit 8867426

Please sign in to comment.