import now copies file to your record folder

This commit is contained in:
MeexReay 2024-04-23 20:43:49 +03:00
parent a345f65797
commit e808b6ca09
2 changed files with 10 additions and 1 deletions

View file

@ -148,7 +148,7 @@ public class RepeatingScreen extends Screen {
if (files != null) {
for (File file : files) {
try {
Main.me.setNowRecord(Main.me.record_list.addRecord(file));
Main.me.setNowRecord(Main.me.record_list.cloneRecord(file));
} catch (Exception e) {
throw new RuntimeException(e);
}