Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update issue.py
  • Loading branch information
Masterain98 committed Sep 13, 2025
commit c81b686582675af8fc8ced46c53e5036fd53b14a
3 changes: 1 addition & 2 deletions routers/issue.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@ def _fetch_open_bug_issues() -> List[Dict[str, Any]]:
"""Fetch open issues labeled 'Bug' from GitHub."""
params = {
"state": "open",
"labels": "Bug",
"per_page": 100,
"type": "Bug"
}
logger.debug(f"Fetching issues from GitHub: {GITHUB_ISSUES_URL} {params}")
resp = httpx.get(GITHUB_ISSUES_URL, headers=github_headers, params=params, timeout=30.0)
Expand Down