Fix check for file name with separator
This commit is contained in:
parent
198cc5337a
commit
3c61faa8c3
1 changed files with 1 additions and 1 deletions
|
@ -183,7 +183,7 @@ public class SettingsHelper {
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean applyFileName(@NonNull String fileName) {
|
public boolean applyFileName(@NonNull String fileName) {
|
||||||
return getFileName().equals(fileName);
|
return getFileName().endsWith(fileName);
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean shouldReadOnCollecting() {
|
public boolean shouldReadOnCollecting() {
|
||||||
|
|
Loading…
Reference in a new issue