fix: accidentally cached all songs, it is supposed to download
ci/woodpecker/push/woodpecker Pipeline was successful Details

This commit is contained in:
Hellow 2024-04-26 01:13:57 +02:00
parent 3d94e6e2dd
commit 7bc73de128
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ class Connection:
raise AttributeError("method is not set.")
method = method.upper()
headers = dict() if headers is None else headers
disable_cache = headers.get("Cache-Control", "").lower() == "no-cache" if disable_cache is None else disable_cache
disable_cache = (headers.get("Cache-Control", "").lower() == "no-cache" if disable_cache is None else disable_cache) or kwargs.get("stream", False)
accepted_response_codes = self.ACCEPTED_RESPONSE_CODES if accepted_response_codes is None else accepted_response_codes
current_kwargs = copy.copy(locals())