You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The filter (filter(::lastActionWasNotAResolve)) before the return statement of searchIssues currently prevents all modules from seeing issues that were resolved or reopened as the last action.
However, for most modules this is not required, and modules like the AttachmentModule should always see all issues.
Furthermore it prevents modules like requested in #145, #116, #50 and #38 to be implemented in any meaningful way.
I propose that this filter is removed from the module executor, and modules that do require it, should implement their own assertions.
The text was updated successfully, but these errors were encountered:
arisa-kt/src/main/kotlin/io/github/mojira/arisa/ModuleExecutor.kt
Lines 100 to 133 in 188e542
The filter (
filter(::lastActionWasNotAResolve)
) before the return statement ofsearchIssues
currently prevents all modules from seeing issues that were resolved or reopened as the last action.However, for most modules this is not required, and modules like the AttachmentModule should always see all issues.
Furthermore it prevents modules like requested in #145, #116, #50 and #38 to be implemented in any meaningful way.
I propose that this filter is removed from the module executor, and modules that do require it, should implement their own assertions.
The text was updated successfully, but these errors were encountered: