mikage-emu / saveShop

Let's save the 3DS and Wii U eShop!
90 stars 2 forks source link

Got error 403 Forbidden, retrying in 10 seconds #19

Open arnxxau opened 1 year ago

arnxxau commented 1 year ago

I'm trying to download the JP region, but each time it reaches title 50010000020413 (1276 out of 2414), it gets stuck in an infinite loop of retries.

image

neobrain commented 1 year ago

Looks like the Ninja endpoint is returning this error code for some titles now.

As a workaround, you can replace line 93 in main.rs with this:

if !response.status().is_success() && response.status() != reqwest::StatusCode::NOT_FOUND && response.status() != reqwest::StatusCode::FORBIDDEN {`

EDIT: Actually looks like this was returning 403 even before the 27th already.