From 8ac3cdfaac7f2497adda5e33f40832812c7bbb51 Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Sun, 9 Oct 2022 21:58:22 +0000 Subject: [PATCH] remove extra variable added in 07d6898 --- steam/client/cdn.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/steam/client/cdn.py b/steam/client/cdn.py index f3d343c..dbd09ab 100644 --- a/steam/client/cdn.py +++ b/steam/client/cdn.py @@ -357,7 +357,7 @@ class CDNDepotFile(DepotFile): chunk_end = chunk_start + chunk.cb_original if ( chunk_start <= self.offset < chunk_end - or (chunk_end, chunk_start > self.offset and end_offset > chunk_end) + or (chunk_start > self.offset and end_offset > chunk_end) or chunk_start < end_offset <= chunk_end): if start_offset is None: start_offset = chunk.offset