fix issue with foreground service on Oreo+ (#1203)
This commit is contained in:
parent
8071252e21
commit
0956489cb8
@ -956,7 +956,11 @@ public final class ComposeActivity
|
||||
getIntent().getStringExtra(SAVED_JSON_URLS_EXTRA),
|
||||
accountManager.getActiveAccount(), savedTootUid);
|
||||
|
||||
startService(sendIntent);
|
||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
|
||||
startForegroundService(sendIntent);
|
||||
} else {
|
||||
startService(sendIntent);
|
||||
}
|
||||
|
||||
finishWithoutSlideOutAnimation();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user