mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-27 18:27:43 +00:00
Fixed starting send service on boot
This commit is contained in:
parent
30add955b4
commit
f6d810fab1
1 changed files with 3 additions and 1 deletions
|
@ -54,6 +54,7 @@ import javax.mail.internet.InternetAddress;
|
|||
import javax.mail.internet.MimeMessage;
|
||||
|
||||
import androidx.core.app.NotificationCompat;
|
||||
import androidx.core.content.ContextCompat;
|
||||
import androidx.lifecycle.LifecycleService;
|
||||
import androidx.lifecycle.Observer;
|
||||
|
||||
|
@ -452,6 +453,7 @@ public class ServiceSend extends LifecycleService {
|
|||
}
|
||||
|
||||
static void start(Context context) {
|
||||
context.startService(new Intent(context, ServiceSend.class));
|
||||
ContextCompat.startForegroundService(context,
|
||||
new Intent(context, ServiceSend.class));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue