mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-12-23 03:11:30 +00:00
Fixed crash in FolderPickerActivity (fixes #177).
This commit is contained in:
parent
201bc9ecae
commit
699ef0f1b1
1 changed files with 3 additions and 0 deletions
|
@ -81,6 +81,9 @@ public class FolderPickerActivity extends SyncthingActivity
|
|||
}
|
||||
|
||||
for (File f : mRootDirectories) {
|
||||
if (f == null)
|
||||
continue;
|
||||
|
||||
mRootsAdapter.add(f);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue