Made the oauth service actually report it's activation

Signed-off-by: Arzumify <jliwin98@danwin1210.de>
This commit is contained in:
Tracker-Friendly 2024-10-02 18:31:57 +01:00
parent 755a600418
commit 07340775eb
1 changed files with 9 additions and 0 deletions

View File

@ -1805,4 +1805,13 @@ func Main(information library.ServiceInitializationInformation) {
}
}
}()
// Report a successful activation
information.Outbox <- library.InterServiceMessage{
ServiceID: ServiceInformation.ServiceID,
ForServiceID: uuid.MustParse("00000000-0000-0000-0000-000000000001"), // Activation service
MessageType: 0,
SentAt: time.Now(),
Message: true,
}
}