Skip to content

Commit

Permalink
Apply fix from #979
Browse files Browse the repository at this point in the history
  • Loading branch information
matlabbe committed Apr 16, 2024
1 parent 726bceb commit 27dea71
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion corelib/src/Memory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1215,7 +1215,10 @@ void Memory::moveSignatureToWMFromSTM(int id, int * reducedTo)
}
}

this->moveToTrash(s, false);
// Setting true to make sure we save all visual
// words that could be referenced in a previously
// transferred node in LTM (#979)
this->moveToTrash(s, true);
s = 0;
}
}
Expand Down

0 comments on commit 27dea71

Please sign in to comment.