mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	integrations: Allow null pull request review body in GitHub Integration.
There are instances in which the pull request review body can be null. Fixes #26055.
This commit is contained in:
		@@ -519,7 +519,7 @@ def get_pull_request_review_body(helper: Helper) -> str:
 | 
			
		||||
        url=payload["review"]["html_url"].tame(check_string),
 | 
			
		||||
        type="PR review",
 | 
			
		||||
        title=title if include_title else None,
 | 
			
		||||
        message=payload["review"]["body"].tame(check_string),
 | 
			
		||||
        message=payload["review"]["body"].tame(check_none_or(check_string)),
 | 
			
		||||
    )
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user