Skip to content
This repository was archived by the owner on Feb 13, 2024. It is now read-only.

Commit 8b45502

Browse files
author
Philipp Etschel
committed
latest aca-py client release
Signed-off-by: Philipp Etschel <philipp.etschel@ch.bosch.com>
1 parent 5eecebf commit 8b45502

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

backend/business-partner-agent/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@
128128
<dependency>
129129
<groupId>network.idu.acapy</groupId>
130130
<artifactId>aries-client-python</artifactId>
131-
<version>0.7.17-SNAPSHOT</version>
131+
<version>0.7.17</version>
132132
</dependency>
133133
<dependency>
134134
<groupId>org.hyperledger.business-partner-agent</groupId>

backend/business-partner-agent/src/main/java/org/hyperledger/bpa/impl/InvitationParser.java

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ public class InvitationParser {
5757
static final List<String> CONNECTION_INVITATION_TYPES = List.of(
5858
"did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/connections/1.0/invitation",
5959
"https://didcomm.org/connections/1.0/invitation");
60-
static final List<String> OOB_INVITATION_TYPES = List.of("did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/out-of-band/1.0/invitation",
60+
static final List<String> OOB_INVITATION_TYPES = List.of(
61+
"did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/out-of-band/1.0/invitation",
6162
"https://didcomm.org/out-of-band/1.0/invitation");
6263

6364
public InvitationParser() {
@@ -232,9 +233,10 @@ private String parseInvitationBlockFromRedirect(@NonNull HttpUrl url) {
232233
}
233234

234235
/**
235-
* The location header can either be an HTTP URL or simply a URI, as we
236-
* only process the query, and we do not want to rewrite the query parser
237-
* the query is extracted from the URI and then wrapped again into a dummy HTTP URL
236+
* The location header can either be an HTTP URL or simply a URI, as we only
237+
* process the query, and we do not want to rewrite the query parser the query
238+
* is extracted from the URI and then wrapped again into a dummy HTTP URL
239+
*
238240
* @param location the content of the location header
239241
* @return {@link HttpUrl} or null
240242
*/

0 commit comments

Comments
 (0)