1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00

* fix critical UI behaviour bug

This commit is contained in:
Reinhard Pointner 2014-07-28 19:20:34 +00:00
parent 6d24dcef05
commit 6399f63840

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");