From 071400476d024a6256082b63978be40497796fe0 Mon Sep 17 00:00:00 2001 From: EGsagon Date: Mon, 20 Nov 2023 09:20:37 +0100 Subject: [PATCH] Fix #27 --- src/phub/objects/query.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/phub/objects/query.py b/src/phub/objects/query.py index c7da67f..f609dda 100644 --- a/src/phub/objects/query.py +++ b/src/phub/objects/query.py @@ -280,7 +280,7 @@ class UserQuery(HTMLQuery): def _parse_page(self, raw: str) -> list[tuple]: - container = raw.split('class="videoSection')[1] + container = raw.split('class="mainSection')[1] return consts.re.get_videos(container) class FeedQuery(Query):