Rename Register Service

This commit is contained in:
gougeon-s
2020-06-21 20:41:18 +02:00
parent 4707acbc98
commit ef2b9b405c
2 changed files with 2 additions and 2 deletions

View File

@@ -48,7 +48,7 @@
<service android:name=".service.WebSocketService" />
<service android:name=".service.GotifyPushNotification" />
<service android:name=".service.GotifyMessengerService" android:exported="true" />
<service android:name=".service.GotifyRegisterService" android:exported="true" />
<receiver android:name=".init.BootCompletedReceiver">
<intent-filter>

View File

@@ -19,7 +19,7 @@ import kotlin.concurrent.thread
// TODO : in the app, implement forceUnregisterApp
@RequiresApi(Build.VERSION_CODES.LOLLIPOP)
class GotifyMessengerService : Service() {
class GotifyRegisterService : Service() {
/** Keeps track of all current registered clients. */
private val db = MessagingDatabase(this)
private lateinit var settings: Settings