commit
600030d03f
1 changed files with 2 additions and 1 deletions
|
@ -501,8 +501,9 @@ public class GPXDatabase {
|
||||||
}
|
}
|
||||||
|
|
||||||
private String getFileDir(File itemFile) {
|
private String getFileDir(File itemFile) {
|
||||||
return itemFile.getParentFile() == null ? ""
|
String fileDir = itemFile.getParentFile() == null ? ""
|
||||||
: new File(itemFile.getPath().replace(context.getAppPath(IndexConstants.GPX_INDEX_DIR).getPath() + "/", "")).getParent();
|
: new File(itemFile.getPath().replace(context.getAppPath(IndexConstants.GPX_INDEX_DIR).getPath() + "/", "")).getParent();
|
||||||
|
return fileDir != null ? fileDir : "";
|
||||||
}
|
}
|
||||||
|
|
||||||
void insert(GpxDataItem item, SQLiteConnection db) {
|
void insert(GpxDataItem item, SQLiteConnection db) {
|
||||||
|
|
Loading…
Reference in a new issue