mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-29 01:33:10 -06:00
Fix nil pointer
This commit is contained in:
parent
87f476e444
commit
00dc43ce26
|
|
@ -473,6 +473,9 @@ func (a *KeyInternalAPI) QuerySignatures(ctx context.Context, req *api.QuerySign
|
||||||
}
|
}
|
||||||
|
|
||||||
for sourceUserID, forSourceUser := range keyMap {
|
for sourceUserID, forSourceUser := range keyMap {
|
||||||
|
if res.Signatures == nil {
|
||||||
|
res.Signatures = map[string]map[gomatrixserverlib.KeyID]types.CrossSigningSigMap{}
|
||||||
|
}
|
||||||
if _, ok := res.Signatures[targetUserID]; !ok {
|
if _, ok := res.Signatures[targetUserID]; !ok {
|
||||||
res.Signatures[targetUserID] = map[gomatrixserverlib.KeyID]types.CrossSigningSigMap{}
|
res.Signatures[targetUserID] = map[gomatrixserverlib.KeyID]types.CrossSigningSigMap{}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue