oops, sharedInbox is hiding under endpoints
This commit is contained in:
parent
6ec4352d69
commit
ca85e502d2
|
@ -287,7 +287,7 @@ func getboxes(ident string) (*Box, error) {
|
|||
}
|
||||
inbox, _ := jsongetstring(j, "inbox")
|
||||
outbox, _ := jsongetstring(j, "outbox")
|
||||
sbox, _ := jsongetstring(j, "sharedInbox")
|
||||
sbox, _ := jsonfindstring(j, []string{"endpoints", "sharedInbox"})
|
||||
b = &Box{In: inbox, Out: outbox, Shared: sbox}
|
||||
boxlock.Lock()
|
||||
boxofboxes[ident] = b
|
||||
|
|
Loading…
Reference in New Issue