Skip to content

Commit

Permalink
fix: Remove apostrophe from connection request message type (#364)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubkoci authored Jul 5, 2021
1 parent 3fe67b1 commit ee81d01
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export class ConnectionRequestMessage extends AgentMessage {

@Equals(ConnectionRequestMessage.type)
public readonly type = ConnectionRequestMessage.type
public static readonly type = "https://didcomm.org/connections/1.0/request'"
public static readonly type = 'https://didcomm.org/connections/1.0/request'

@IsString()
public label!: string
Expand Down

1 comment on commit ee81d01

@MosCD3
Copy link
Contributor

@MosCD3 MosCD3 commented on ee81d01 Jul 6, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

perfect, that was a blocker, I was about to open ticket for it

Please sign in to comment.