mirror of
https://github.com/SimpleMobileTools/Simple-Gallery.git
synced 2025-03-16 19:40:10 +01:00
fixing a crash at updating the widget
This commit is contained in:
parent
a9bbe65999
commit
82ca23935a
@ -40,9 +40,9 @@ class MyWidgetProvider : AppWidgetProvider() {
|
||||
setText(R.id.widget_folder_name, context.getFolderNameFromPath(it.folderPath))
|
||||
}
|
||||
|
||||
val path = context.directoryDB.getDirectoryThumbnail(it.folderPath)
|
||||
val path = context.directoryDB.getDirectoryThumbnail(it.folderPath) ?: return@forEach
|
||||
val options = RequestOptions()
|
||||
.signature(path!!.getFileSignature())
|
||||
.signature(path.getFileSignature())
|
||||
.diskCacheStrategy(DiskCacheStrategy.RESOURCE)
|
||||
if (context.config.cropThumbnails) options.centerCrop() else options.fitCenter()
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user