mirror of
https://github.com/SimpleMobileTools/Simple-Gallery.git
synced 2025-02-17 04:20:38 +01:00
ignore the photoFetcher at Android versions below 7
This commit is contained in:
parent
bee4b0ff72
commit
5592c23c4e
@ -368,11 +368,13 @@ class MainActivity : SimpleActivity(), DirectoryOperationsListener {
|
||||
}
|
||||
|
||||
private fun startNewPhotoFetcher() {
|
||||
if (isNougatPlus()) {
|
||||
val photoFetcher = NewPhotoFetcher()
|
||||
if (isNougatPlus() && !photoFetcher.isScheduled(applicationContext)) {
|
||||
if (!photoFetcher.isScheduled(applicationContext)) {
|
||||
photoFetcher.scheduleJob(applicationContext)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private fun removeTempFolder() {
|
||||
if (config.tempFolderPath.isNotEmpty()) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user