mirror of
https://github.com/SimpleMobileTools/Simple-Gallery.git
synced 2025-02-17 04:20:38 +01:00
run media fetcher on reboot on a background thread
This commit is contained in:
parent
3214df4065
commit
74cd554248
@ -3,13 +3,16 @@ package com.simplemobiletools.gallery.pro.receivers
|
||||
import android.content.BroadcastReceiver
|
||||
import android.content.Context
|
||||
import android.content.Intent
|
||||
import com.simplemobiletools.commons.helpers.ensureBackgroundThread
|
||||
import com.simplemobiletools.gallery.pro.extensions.updateDirectoryPath
|
||||
import com.simplemobiletools.gallery.pro.helpers.MediaFetcher
|
||||
|
||||
class BootCompletedReceiver : BroadcastReceiver() {
|
||||
override fun onReceive(context: Context, intent: Intent) {
|
||||
ensureBackgroundThread {
|
||||
MediaFetcher(context).getFoldersToScan().forEach {
|
||||
context.updateDirectoryPath(it)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user