File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 9
9
"request" : " launch" ,
10
10
"name" : " Launch" ,
11
11
"program" : " ${workspaceFolder}\\ index.js" ,
12
- "cwd" : " ${workspaceFolder}"
12
+ "cwd" : " ${workspaceFolder}" ,
13
+ "runtimeArgs" : [" --tls-min-v1.0" ]
13
14
},
14
15
{
15
16
"type" : " node" ,
Original file line number Diff line number Diff line change @@ -534,6 +534,11 @@ async function getActiveCollabProjectTasks (activeCollabProjectId) {
534
534
if ( projectTasks === undefined ) {
535
535
let activeCollabTasks = await activeCollab . tasks ( activeCollabProjectId )
536
536
537
+ if ( activeCollabTasks === null ) {
538
+ console . log ( `No tasks found for Project ID: ${ activeCollabProjectId } ` ) ;
539
+ return [ ] ;
540
+ }
541
+
537
542
// Reduce the array of objects down to key on task id.
538
543
projectTasks = activeCollabTasks . reduce ( function ( obj , item ) {
539
544
obj [ item . task_id ] = item
You can’t perform that action at this time.
0 commit comments