Skip to content

Commit

Permalink
Merge pull request #211 from niscy-eudiw/main
Browse files Browse the repository at this point in the history
Resolved issue with RQES file permissions
  • Loading branch information
stzouvaras authored Nov 21, 2024
2 parents f004c7b + df44774 commit dbeec96
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 32 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"originHash" : "42c0b7377392d15a2577e8216efa33676882bcb10f643f56331628a1c7779ce2",
"originHash" : "7e6f3a0f4f417301385ccddd96b735da0c98f09637abc2ac62ad70956a239570",
"pins" : [
{
"identity" : "activityindicatorview",
Expand Down Expand Up @@ -114,8 +114,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/eu-digital-identity-wallet/eudi-lib-ios-iso18013-data-transfer.git",
"state" : {
"revision" : "900416bcab3e95a17dea2fbf224210521c5b68d6",
"version" : "0.3.7"
"revision" : "25a71bea1d4bddd7faf8490f39dbf52ef902b671",
"version" : "0.3.8"
}
},
{
Expand Down Expand Up @@ -168,8 +168,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/eu-digital-identity-wallet/eudi-lib-ios-rqes-ui.git",
"state" : {
"revision" : "ac5b3c0de81db63023c20c9b4dd70bf94c37eebb",
"version" : "0.0.2"
"revision" : "9fcf589d723349ab8f0b2c54b40f78fc0cfaa12c",
"version" : "0.0.3"
}
},
{
Expand All @@ -186,8 +186,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/eu-digital-identity-wallet/eudi-lib-ios-wallet-kit.git",
"state" : {
"revision" : "b58b1bf3b33966dcc5b05e4791ffc7f928cb94fb",
"version" : "0.7.7"
"revision" : "7fae108b12cf1d199c61198fba21539c37956bc7",
"version" : "0.7.8"
}
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,12 @@ struct SignDocumentView<Router: RouterHost>: View {
onCompletion: { result in
switch result {
case .success(let url):
viewModel.onFileSelection(with: url)
do {
if url.startAccessingSecurityScopedResource() {
_ = try Data(contentsOf: url)
viewModel.onFileSelection(with: url)
}
} catch { }
case .failure:
break
}
Expand Down
2 changes: 1 addition & 1 deletion Modules/logic-business/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ let package = Package(
),
.package(
url: "https://github.com/eu-digital-identity-wallet/eudi-lib-ios-rqes-ui.git",
from: "0.0.2"
exact: "0.0.3"
),
.package(name: "logic-test", path: "./logic-test")
],
Expand Down
2 changes: 1 addition & 1 deletion Modules/logic-core/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ let package = Package(
dependencies: [
.package(
url: "https://github.com/eu-digital-identity-wallet/eudi-lib-ios-wallet-kit.git",
exact: "0.7.7"
exact: "0.7.8"
),
.package(
name: "logic-resources",
Expand Down
22 changes: 0 additions & 22 deletions Modules/logic-core/Sources/Extension/RequestItem+Extensions.swift

This file was deleted.

0 comments on commit dbeec96

Please sign in to comment.