Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Toasts.Forms.Plugin.Droid/NotificationBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ void TimerFinished(string id, bool cancel, bool allowTapInNotificationCenter)
if (!allowTapInNotificationCenter || cancel)
if (ResetEvent.ContainsKey(id))
{
if (EventResult != null)
if (EventResult != null && !EventResult.ContainsKey(id))
{
EventResult.Add(id, new NotificationResult() { Action = NotificationAction.Timeout, Id = int.Parse(id) });
}
Expand Down Expand Up @@ -376,4 +376,4 @@ public override void OnReceive(Context context, Intent intent)
}
}

}
}