• perf(checker): run account checks concurrently using Promise.any
    All checks were successful
    Build and Publish Docker Image / build-and-push (push) Successful in 22s

    Karl released this 2025-07-13 17:01:31 +01:00 | 0 commits to master since this release

    Refactors the singleAccountCheck function to use Promise.any for validating accounts against multiple stream URLs. This replaces the previous sequential for loop.

    By running the checks concurrently, the process is significantly faster as it no longer waits for each request to finish before trying the next. The function now resolves as soon as the first successful validation occurs.

    The fallback logic for 403 errors (from a tor instance to a direct request) is now cleanly encapsulated within each promise.

    Downloads