Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo for CATEGORY_NOTIFY_SLOT string #479

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
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
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public abstract class SelfNotifiableSlot<T extends EventData> extends AbstractSl
// Fields used in relevant Intent
private static final String ACTION_SATISFIED = "ryey.easer.triggerlotus.abstractslot.SATISFIED";
private static final String ACTION_UNSATISFIED = "ryey.easer.triggerlotus.abstractslot.UNSATISFIED";
private static final String CATEGORY_NOTIFY_SLOT = "ryey.easer.triggetlotus.category.NOTIFY_SLOT";
private static final String CATEGORY_NOTIFY_SLOT = "ryey.easer.triggerlotus.category.NOTIFY_SLOT";
/*
* Mechanisms and fields used to notify the slot itself, and then proceed to `onPositiveNotified()`.
* This is because some system-level checking mechanisms (e.g. data/time) need a PendingIntent.
Expand Down