Matthias Endler

Results 999 comments of Matthias Endler

Thanks for the feedback; I'll look into it.

Sorry for dropping the ball on this. Just a reminder what needs to be done so that I can quickly jump back in when I find the time: - rebase...

Maybe it should behave exactly like `ls` or `tree` behave? If they list the file, we should check them.

Tackling this in #1837. Feedback welcome! Also, if someone could try it, I'd be super thankful. ```sh cargo install --git https://github.com/lycheeverse/lychee/ --branch absolute-local-windows-paths ```

Right now we only print redirects in verbose mode (`-v` and above). @thomas-zahner, maybe we should introduce a dedicated flag for that?

The default lychee-action args contain `--verbose`, so maybe that's the problem: https://github.com/lycheeverse/lychee-action/blob/79de8811d696d79a713d425d265c9870b929fbf2/action.yml#L6 You'd have to overwrite the args. ```yaml - name: Link Checker uses: lycheeverse/lychee-action@v2 with: # Check all markdown,...

Yes, I tried it locally with a test command that I know does redirect. Works as expected: ```sh echo 'https://www.evernote.com' | lychee --root-dir $(pwd) --no-progress --fallback-extensions mdx --include-fragments --include-mail --exclude-all-private...

Alternatively, we could show a note instead? ```sh lychee detected 23 redirects. For better stability, consider replacing them with final URLs. Use --verbose to list them. ```

@katrinafyi, from that list, I wouldn't know which one to recommend to the user. 😕 One could make the argument that https://dx.doi.org/10.1007/978-3-540-74061-2_11 would be the most future-proof, since DOI acts...

I investigated several related issues: - [reqwest TLS discussion](https://github.com/seanmonstar/reqwest/discussions/2428#discussioncomment-10710130) - [Rust users forum thread](https://users.rust-lang.org/t/reqwest-tls-error-with-use-native-tls/49627) First, I tried setting a different user agent: ```sh lychee --user-agent "curl/8.4.0" https://docs.talon.one ``` This didn't...