Add parity mapping from altnames back to themsevles in `Client._ntable`

rekt_pps
Tyler Goodlet 2023-03-21 00:36:16 -04:00
parent 55b6cba31e
commit 99199905b6
1 changed files with 1 additions and 1 deletions

View File

@ -538,7 +538,7 @@ class Client:
pair: Pair = self._pairs[rest_key] pair: Pair = self._pairs[rest_key]
altname = pair.altname altname = pair.altname
wsname = pair.wsname wsname = pair.wsname
ntable[rest_key] = ntable[wsname] = altname ntable[altname] = ntable[rest_key] = ntable[wsname] = altname
# register the pair under all monikers, a giant flat # register the pair under all monikers, a giant flat
# surjection of all possible names to each info obj. # surjection of all possible names to each info obj.