ignore the photoFetcher at Android versions below 7
This commit is contained in:
parent
bee4b0ff72
commit
5592c23c4e
|
@ -368,9 +368,11 @@ class MainActivity : SimpleActivity(), DirectoryOperationsListener {
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun startNewPhotoFetcher() {
|
private fun startNewPhotoFetcher() {
|
||||||
val photoFetcher = NewPhotoFetcher()
|
if (isNougatPlus()) {
|
||||||
if (isNougatPlus() && !photoFetcher.isScheduled(applicationContext)) {
|
val photoFetcher = NewPhotoFetcher()
|
||||||
photoFetcher.scheduleJob(applicationContext)
|
if (!photoFetcher.isScheduled(applicationContext)) {
|
||||||
|
photoFetcher.scheduleJob(applicationContext)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue