* fix critical UI behaviour bug

This commit is contained in:
Reinhard Pointner 2014-07-28 19:20:34 +00:00
parent 6d24dcef05
commit 6399f63840
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ public final class HistorySpooler {
public synchronized History getCompleteHistory() throws IOException {
if (!persistentHistoryEnabled || persistentHistoryFile.length() <= 0) {
return new History();
return new History(sessionHistory.sequences());
}
RandomAccessFile f = new RandomAccessFile(persistentHistoryFile, "rw");