Skip to content

4.3.24

Compare
Choose a tag to compare
@github-actions github-actions released this 01 Nov 08:45
· 1120 commits to master since this release

Abstract

This pull request fixes the logic to remove duplicate topics in the updateTopicCandidates function, improving the behavior by correctly sorting and eliminating duplicates from the topic list.

Background

This change was necessary because the previous implementation did not properly handle the removal of duplicate topics, which could lead to incorrect behavior when selecting topics in the UI.

Details

The fix was made by adding a call to std::sort() followed by std::unique(), ensuring that the topics_ vector is both sorted and has its duplicates removed. The previous implementation only applied std::unique() without sorting, which led to incomplete duplicate removal.

References

Destructive Changes

N/A

Known Limitations

N/A

Related Issues