Skip to content
Snippets Groups Projects
Commit 47a807b7 authored by Josh Brooks's avatar Josh Brooks
Browse files

Move bug fix line for UD down to proper spot

parent 24773345
No related branches found
No related tags found
2 merge requests!510Release,!245Josh/fix ud
......@@ -331,7 +331,6 @@ func LoginWithProtoClient(storageDir string, password []byte,
return nil, err
}
c.network.AddIdentity(c.GetUser().ReceptionID, time.Time{}, true)
c.storage.SetNDF(def)
err = c.initPermissioning(def)
......@@ -344,6 +343,8 @@ func LoginWithProtoClient(storageDir string, password []byte,
return nil, err
}
c.network.AddIdentity(c.GetUser().ReceptionID, time.Time{}, true)
// FIXME: The callbacks need to be set, so I suppose we would need to
// either set them via a special type or add them
// to the login call?
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment