Fix ForegroundServiceStartNotAllowedException in FetchForegroundService.onCreate

Co-authored-by: adbenitez <24558636+adbenitez@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-01-07 14:48:30 +00:00
parent 47cbdc6a44
commit 53aa3c3ccb
@@ -88,7 +88,13 @@ public final class FetchForegroundService extends Service {
.setSmallIcon(R.drawable.notification_permanent)
.build();
startForeground(NotificationCenter.ID_FETCH, notification);
try {
startForeground(NotificationCenter.ID_FETCH, notification);
} catch (Exception e) {
Log.w(TAG, "Failed to start foreground service: " + e);
stopSelf();
return;
}
Util.runOnAnyBackgroundThread(() -> {
Log.i(TAG, "Starting fetch");