mirror of
https://github.com/SimpleMobileTools/Simple-Gallery.git
synced 2025-03-24 07:20:17 +01:00
adding a widget null check
This commit is contained in:
parent
d56510874b
commit
516f20856d
@ -830,7 +830,8 @@ fun Context.deleteMediumWithPath(path: String) {
|
||||
}
|
||||
|
||||
fun Context.updateWidgets() {
|
||||
val widgetIDs = AppWidgetManager.getInstance(applicationContext)?.getAppWidgetIds(ComponentName(applicationContext, MyWidgetProvider::class.java)) ?: return
|
||||
val widgetIDs = AppWidgetManager.getInstance(applicationContext)?.getAppWidgetIds(ComponentName(applicationContext, MyWidgetProvider::class.java))
|
||||
?: return
|
||||
if (widgetIDs.isNotEmpty()) {
|
||||
Intent(applicationContext, MyWidgetProvider::class.java).apply {
|
||||
action = AppWidgetManager.ACTION_APPWIDGET_UPDATE
|
||||
|
Loading…
x
Reference in New Issue
Block a user