-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Add additional On Manual Interaction Required notifications #6450
Add additional On Manual Interaction Required notifications #6450
Conversation
@@ -96,6 +96,17 @@ public void Check(TrackedDownload trackedDownload) | |||
if (series == null) | |||
{ | |||
trackedDownload.Warn("Series title mismatch; automatic import is not possible. Check the download troubleshooting entry on the wiki for common causes."); | |||
|
|||
if (!trackedDownload.HasNotifiedManualInteractionRequired) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you think might be worth the trouble to check if release source is not interactive search? 🤔
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you mean in this case don't notify if it was an interactive search, with the expectation that user is already present and ready to import?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, exactly. This logic is already applied a few lines below this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure I agree here. I this case it would stop all warnings when the title was a mismatch. I didn't change the logic here of the warning creation, only added the notifcation
Description
Trigger notification on other manual interaction types.
Issues Fixed or Closed by this PR