adapt debug output

This commit is contained in:
martin-mfg
2025-08-21 11:39:01 +02:00
parent 4b521aa9b3
commit e6cf67cbcb
+1 -1
View File
@@ -214,7 +214,7 @@ const totalItemsFetcher = async (username, repo, owner, type, filter) => {
const totalCount = res.data.total_count;
if (isNaN(totalCount)) {
throw new CustomError(
"Could not fetch data from GitHub REST API: " + JSON.stringify(res),
"Could not fetch data from GitHub REST API: " + JSON.stringify(res.data),
CustomError.GITHUB_REST_API_ERROR,
);
}