Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
IRMA
Github mirrors
irmago
Commits
8400ed67
Commit
8400ed67
authored
Jun 14, 2019
by
Sietse Ringers
Browse files
fix: bug in bookkeeping of newly downloaded issuers during scheme updating
parent
d98f7e33
Changes
1
Hide whitespace changes
Inline
Side-by-side
irmaconfig.go
View file @
8400ed67
...
...
@@ -1234,8 +1234,8 @@ func (conf *Configuration) UpdateSchemeManager(id SchemeManagerIdentifier, downl
return
}
issPattern
:=
regexp
.
MustCompile
(
"
(.+)/(.
+)/description
\\
.xml"
)
credPattern
:=
regexp
.
MustCompile
(
"
(.+)/(.
+)/Issues/(
.
+)/description
\\
.xml"
)
issPattern
:=
regexp
.
MustCompile
(
"
^([^/]+)/([^/]
+)/description
\\
.xml"
)
credPattern
:=
regexp
.
MustCompile
(
"
^([^/]+)/([^/]
+)/Issues/(
[^/]
+)/description
\\
.xml"
)
// TODO: how to recover/fix local copy if err != nil below?
for
filename
,
newHash
:=
range
newIndex
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment