diff --git a/wowlet_backend/tasks/forum.py b/wowlet_backend/tasks/forum.py index 315f910..3d7914f 100644 --- a/wowlet_backend/tasks/forum.py +++ b/wowlet_backend/tasks/forum.py @@ -29,26 +29,4 @@ class ForumThreadsTask(WowletTask): from wowlet_backend.factory import app blob = await httpget(self._http_endpoint, json=True) - - users = {z['id']: z for z in blob["users"]} - - topics = [] - for topic in blob['topic_list']['topics']: - if topic.get("pinned_globally", True): - continue - - try: - u = next(z for z in topic["posters"] if "original poster" in z['description'].lower())['user_id'] - href = f"https://forum.wownero.com/t/{topic['slug']}" - topics.append({ - "id": topic["id"], - "title": topic["title"], - "comments": topic["posts_count"] - 1, - "created_at": parse(topic["created_at"]).strftime("%Y-%m-%d %H:%M"), - "author": users[u]['username'], - "permalink": href - }) - except Exception as ex: - app.logger.error(f"skipping a forum topic; {ex}") - - return topics[:25] + return blob