X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fkotlin%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2Fnotification%2FNotificationHandler.kt;h=d0e8bf275280d395caa95c05f4c30f94f5daed47;hp=cc2a2b3c71be6216d192e6fddc0455c8e7a39842;hb=7a4ce0402bb7146ad791fbc52c0cf9b4d6871c91;hpb=60b0b8a4b6954a0137b963397e144fd4ed82e3a8 diff --git a/src/main/kotlin/net/pterodactylus/sone/web/notification/NotificationHandler.kt b/src/main/kotlin/net/pterodactylus/sone/web/notification/NotificationHandler.kt index cc2a2b3..d0e8bf2 100644 --- a/src/main/kotlin/net/pterodactylus/sone/web/notification/NotificationHandler.kt +++ b/src/main/kotlin/net/pterodactylus/sone/web/notification/NotificationHandler.kt @@ -28,6 +28,7 @@ import javax.inject.* @Suppress("UNUSED_PARAMETER") class NotificationHandler @Inject constructor( markPostKnownDuringFirstStartHandler: MarkPostKnownDuringFirstStartHandler, + markPostReplyKnownDuringFirstStartHandler: MarkPostReplyKnownDuringFirstStartHandler, newSoneHandler: NewSoneHandler, newRemotePostHandler: NewRemotePostHandler, soneLockedOnStartupHandler: SoneLockedOnStartupHandler, @@ -39,5 +40,6 @@ class NotificationHandler @Inject constructor( startupHandler: StartupHandler, webOfTrustPinger: WebOfTrustPinger, webOfTrustHandler: WebOfTrustHandler, - soneMentionDetector: SoneMentionDetector + soneMentionDetector: SoneMentionDetector, + soneMentionedHandler: SoneMentionedHandler )