From 708ed9a91c637bd2e5dffdd2024c86fde64fd025 Mon Sep 17 00:00:00 2001 From: Abhimanyu Yadav <122007096+Abhi1992002@users.noreply.github.com> Date: Wed, 27 Nov 2024 02:16:13 +0530 Subject: [PATCH 1/2] fix(platform): handle None value in issue body when fetching GitHub issues (#8773) Co-authored-by: Reinier van der Leer --- autogpt_platform/backend/backend/blocks/github/issues.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/autogpt_platform/backend/backend/blocks/github/issues.py b/autogpt_platform/backend/backend/blocks/github/issues.py index 24790accec9e..8cab07db3f71 100644 --- a/autogpt_platform/backend/backend/blocks/github/issues.py +++ b/autogpt_platform/backend/backend/blocks/github/issues.py @@ -234,9 +234,12 @@ def run( credentials, input_data.issue_url, ) - yield "title", title - yield "body", body - yield "user", user + if title: + yield "title", title + if body: + yield "body", body + if user: + yield "user", user class GithubListIssuesBlock(Block): From f62fa3e1e311ac0321e2df24cb63a502a39e1f5b Mon Sep 17 00:00:00 2001 From: oxygen-fragment <132998332+oxygen-fragment@users.noreply.github.com> Date: Tue, 26 Nov 2024 21:49:47 +0100 Subject: [PATCH 2/2] updated URL on README.md (#8767) * docs(backend): Add `--build` to docker command in Getting Started guide (#8762) * updated URL on README.md --------- Co-authored-by: Reinier van der Leer