fix temp encoding dir
This commit is contained in:
parent
10b26be3a8
commit
1e97519187
1 changed files with 5 additions and 1 deletions
|
|
@ -84,7 +84,11 @@ public class EncodingStorage extends HashMap<File, EncodingStorage.Info> {
|
|||
|
||||
public void load() {
|
||||
clear();
|
||||
File storage = this.storage.getTempRecording().getParentFile();
|
||||
File file = storage.getTempEncoding().getParentFile();
|
||||
load(file);
|
||||
}
|
||||
|
||||
public void load(File storage) {
|
||||
File[] ff = storage.listFiles(new FilenameFilter() {
|
||||
String start = Storage.getNameNoExt(Storage.TMP_ENC);
|
||||
String ext = "." + Storage.getExt(Storage.TMP_ENC);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue