From 07d6898b098cf8cdbb2d48702b8e8f1bf505704e Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Sun, 9 Oct 2022 21:41:33 +0000 Subject: [PATCH] fix CDNDepotFile.read() not returning the whole file --- steam/client/cdn.py | 1 + 1 file changed, 1 insertion(+) diff --git a/steam/client/cdn.py b/steam/client/cdn.py index c455226..f3d343c 100644 --- a/steam/client/cdn.py +++ b/steam/client/cdn.py @@ -357,6 +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 < end_offset <= chunk_end): if start_offset is None: start_offset = chunk.offset