From 30a3c9e701e1d048fa2f4ba7ce95c96605574bd5 Mon Sep 17 00:00:00 2001
From: Luke Page <luke.a.page@gmail.com>
Date: Tue, 3 Mar 2020 11:36:57 +0100
Subject: [PATCH] fix(azure): null exception updating comment (#5624)

Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
---
 lib/platform/azure/index.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/platform/azure/index.ts b/lib/platform/azure/index.ts
index cbd9202080..9cbc7d690b 100644
--- a/lib/platform/azure/index.ts
+++ b/lib/platform/azure/index.ts
@@ -512,7 +512,7 @@ export async function ensureComment({
   threads.forEach(thread => {
     const firstCommentContent = thread.comments[0].content;
     if (
-      (topic && firstCommentContent.startsWith(header)) ||
+      (topic && firstCommentContent?.startsWith(header)) ||
       (!topic && firstCommentContent === body)
     ) {
       threadIdFound = thread.id;
-- 
GitLab