Skip to content

Commit

Permalink
Correctly catch format exceptions when loading history #28
Browse files Browse the repository at this point in the history
  • Loading branch information
gnodet committed Nov 18, 2016
1 parent 429c51c commit 8438a84
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,9 @@ public void load() {
maybeResize();
}
}
} catch (IOException e) {
} catch (Exception e) {
Log.info("Error reloading history file: ", path, e);
internalClear();
}
}
}
Expand Down

0 comments on commit 8438a84

Please sign in to comment.