1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-23 22:14:06 +02:00
soloturn
2021-03-20 10:10:09 +01:00
parent d68dfd391b
commit c52c34ab99

View File

@@ -1183,6 +1183,7 @@ public final class MainWindow implements Runnable, RipStatusHandler {
// Guess rip history based on rip folder
String[] dirs = Utils.getWorkingDirectory()
.list((dir, file) -> new File(dir.getAbsolutePath() + File.separator + file).isDirectory());
if (dirs != null) {
for (String dir : dirs) {
String url = RipUtils.urlFromDirectoryName(dir);
if (url != null) {
@@ -1195,6 +1196,7 @@ public final class MainWindow implements Runnable, RipStatusHandler {
}
}
}
}
private void saveHistory() {
Path historyFile = Paths.get(Utils.getConfigDir() + File.separator + "history.json");