This commit is contained in:
Kovid Goyal 2024-10-21 13:41:12 +05:30
parent 235ea54a5c
commit 0918f1b74a
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -2534,7 +2534,7 @@ class Cache:
lm = table.link_map
vm = table.id_map
ans = {vm.get(fid):v for fid,v in lm.items() if v}
ans.pop(None)
ans.pop(None, None)
return ans
@read_api