Update changelog and release notes

This commit is contained in:
Veronica K. B. Olsen
2021-02-20 16:41:33 +01:00
parent 3c72f195ba
commit 254845d71f
4 changed files with 58 additions and 6 deletions
+2 -1
View File
@@ -714,7 +714,8 @@ class NWIndex():
for refTitle in self._refIndex[tHandle]:
for aTag in self._refIndex[tHandle][refTitle].get("tags", []):
if len(aTag) == 3 and (sTitle is None or sTitle == refTitle):
theRefs[aTag[1]].append(aTag[2])
if aTag[1] in theRefs: # Future-compatible. Check can be removed in 1.2.
theRefs[aTag[1]].append(aTag[2])
return theRefs