Skip to content

Commit

Permalink
Added support for TLS responses in v2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
peschuster committed Sep 2, 2019
1 parent 15f26b3 commit db03fda
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/lib/ResponseParsers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,11 @@ export namespace Response {
let components: RegExpMatchArray | null = i.match(/\"([\s\S]*)\" +([\s\S]*)/)

if (components === null) {
return null
// propably 2.2.0
return {
name: i,
type: 'template'
}
}

let name: string = components[1].replace(/\\/g, '/')
Expand Down

0 comments on commit db03fda

Please sign in to comment.