Skip to content
GitLab
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
392daf80
Commit
392daf80
authored
Aug 25, 2018
by
Sietse Ringers
Browse files
Fix reversed equality check in irmaserver backend
parent
df9b27b9
Changes
1
Hide whitespace changes
Inline
Side-by-side
irmaserver/backend/api.go
View file @
392daf80
...
...
@@ -103,7 +103,7 @@ func StartSession(request irma.SessionRequest) (*irma.Qr, string, error) {
func
GetSessionResult
(
token
string
)
*
irmaserver
.
SessionResult
{
session
:=
sessions
.
get
(
token
)
if
session
!
=
nil
{
if
session
=
=
nil
{
return
nil
}
return
session
.
result
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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