dsc
dsc copied to clipboard
thread 'main' panicked at 'overflow when subtracting durations'
When trying to export files immediately after logging in, the following error occurs:
thread 'main' panicked at 'overflow when subtracting durations', library/core/src/time.rs:936:9
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
This can be reproduced by running:
dsc login --password "..." && dsc export --target target
As a workaround i added a small sleep:
dsc login --password "..." && sleep 0.5 && dsc export --target target
Thank you for reporting!