Open
Changes from all commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Failed to load files.
Original file line numberDiff line numberDiff line change
Expand Up@@ -451,6 +451,7 @@ protected Form createForm(RepositoryFile file, String branchName, String commitM
} else {
addFormParam(form, "branch", branchName, true);
}
addFormParam(form, "start_branch", file.getRef(), false);

addFormParam(form, "encoding", file.getEncoding(), false);

Expand DownExpand Up@@ -515,4 +516,4 @@ public Pager<Blame> getBlame(Object projectIdOrPath, String filePath, String ref
public Stream<Blame> getBlameStream(Object projectIdOrPath, String filePath, String ref) throws GitLabApiException {
return (getBlame(projectIdOrPath, filePath, ref, getDefaultPerPage()).stream());
}
}
}