Fix check for file name with separator

This commit is contained in:
Vitaliy 2020-03-25 20:18:56 +02:00
parent 198cc5337a
commit 3c61faa8c3

View file

@ -183,7 +183,7 @@ public class SettingsHelper {
}
public boolean applyFileName(@NonNull String fileName) {
return getFileName().equals(fileName);
return getFileName().endsWith(fileName);
}
public boolean shouldReadOnCollecting() {