Fixed snooze / send at

This commit is contained in:
M66B 2019-03-02 09:05:29 +00:00
parent 1bfc7f02a8
commit 005bca9530
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ public class EntityMessage implements Serializable {
}
static void snooze(Context context, long id, Long wakeup) {
Intent snoozed = new Intent(context, ServiceSynchronize.class);
Intent snoozed = new Intent(context, ServiceUI.class);
snoozed.setAction("snooze:" + id);
PendingIntent pi = PendingIntent.getService(context, ServiceUI.PI_SNOOZED, snoozed, PendingIntent.FLAG_UPDATE_CURRENT);