mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-01-06 06:52:07 +08:00
Subf2m provider: handle 403
This commit is contained in:
parent
82c9e14341
commit
e6864a9001
1 changed files with 5 additions and 0 deletions
|
@ -147,6 +147,11 @@ class Subf2mProvider(Provider):
|
||||||
|
|
||||||
for n in range(retry):
|
for n in range(retry):
|
||||||
req = self._session.get(url, stream=True)
|
req = self._session.get(url, stream=True)
|
||||||
|
|
||||||
|
if req.status_code == 403:
|
||||||
|
logger.debug("Access to this resource is forbidden: %s", url)
|
||||||
|
break
|
||||||
|
|
||||||
# Sometimes subf2m will return a 503 code. This error usually disappears
|
# Sometimes subf2m will return a 503 code. This error usually disappears
|
||||||
# retrying the query
|
# retrying the query
|
||||||
if req.status_code == 503:
|
if req.status_code == 503:
|
||||||
|
|
Loading…
Reference in a new issue