Skip to content

Commit

Permalink
Hopyfully fixes the blank widget bug
Browse files Browse the repository at this point in the history
  • Loading branch information
SlideCI committed Aug 31, 2016
1 parent eb64b4c commit 00e191e
Showing 1 changed file with 5 additions and 0 deletions.
Expand Up @@ -178,6 +178,11 @@ protected void onPostExecute(Void aVoid) {
mContext.sendBroadcast(widgetUpdateIntent);
}
}.execute();
} else {
Intent widgetUpdateIntent = new Intent(mContext, SubredditWidgetProvider.class);
widgetUpdateIntent.setAction(SubredditWidgetProvider.UPDATE_MEETING_ACTION);
widgetUpdateIntent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, id);
mContext.sendBroadcast(widgetUpdateIntent);
}
}

Expand Down

0 comments on commit 00e191e

Please sign in to comment.