Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5ba5c441 authored by Suhail Alkowaileet's avatar Suhail Alkowaileet
Browse files

Fix: The date is not updated in the widget #14

parent 63c3b92d
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -222,21 +222,21 @@ public class Utils {
     * Gets the intent action for telling the widget to update.
     */
    public static String getWidgetUpdateAction(Context context) {
        return context.getPackageName() + ".APPWIDGET_UPDATE";
        return "com.android.calendar.APPWIDGET_UPDATE";
    }

    /**
     * Gets the intent action for telling the widget to update.
     */
    public static String getWidgetScheduledUpdateAction(Context context) {
        return context.getPackageName() + ".APPWIDGET_SCHEDULED_UPDATE";
        return "com.android.calendar.APPWIDGET_SCHEDULED_UPDATE";
    }

    /**
     * Gets the intent action for telling the widget to update.
     */
    public static String getSearchAuthority(Context context) {
        return context.getPackageName() + ".CalendarRecentSuggestionsProvider";
        return "com.android.calendar.CalendarRecentSuggestionsProvider";
    }

    /**