Fixes issue #37 - bug raised by @creideiki *FileNotFoundException*
This commit is contained in:
parent
c407f92ef7
commit
8290e09dd7
|
@ -27,7 +27,9 @@ public class RestartFederatedServiceReceiver extends BroadcastReceiver {
|
|||
@Override
|
||||
public void onReceive(Context context, Intent intent) {
|
||||
Intent streamingServiceIntent = new Intent(context.getApplicationContext(), StreamingFederatedTimelineService.class);
|
||||
context.startService(streamingServiceIntent);
|
||||
try {
|
||||
context.startService(streamingServiceIntent);
|
||||
}catch (Exception ignored){}
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue