Skip to content

Commit

Permalink
Lower the requested number of visible lines from sourcegraph to avoid…
Browse files Browse the repository at this point in the history
… error.

Fixes #578.
  • Loading branch information
bholley committed Feb 1, 2024
1 parent 67e92b6 commit 64583e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2057,7 +2057,7 @@ fn cmd_diff(out: &Arc<dyn Out>, cfg: &Config, sub_args: &DiffArgs) -> Result<(),
&& version2.git_rev.is_none()
{
let url = format!(
"https://sourcegraph.com/crates/{package}/-/compare/v{version1}...v{version2}?visible=1000000"
"https://sourcegraph.com/crates/{package}/-/compare/v{version1}...v{version2}?visible=7000"
);
tokio::runtime::Handle::current()
.block_on(prompt_criteria_eulas(
Expand Down

0 comments on commit 64583e7

Please sign in to comment.