mirror of
				https://github.com/SimpleMobileTools/Simple-Gallery.git
				synced 2025-06-05 21:59:19 +02:00 
			
		
		
		
	ignore the photoFetcher at Android versions below 7
This commit is contained in:
		| @@ -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()) { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user