mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-27 02:07:12 +00:00
Cleanup
This commit is contained in:
parent
1c812a0a30
commit
bb85993da6
1 changed files with 1 additions and 3 deletions
|
@ -280,8 +280,7 @@ public class ServiceSend extends ServiceBase implements SharedPreferences.OnShar
|
|||
private void checkConnectivity() {
|
||||
if (Looper.myLooper() == Looper.getMainLooper())
|
||||
_checkConnectivity();
|
||||
else {
|
||||
Log.e(new Throwable("Not on main thread"));
|
||||
else
|
||||
new Handler(Looper.getMainLooper()).post(new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
|
@ -289,7 +288,6 @@ public class ServiceSend extends ServiceBase implements SharedPreferences.OnShar
|
|||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
private void _checkConnectivity() {
|
||||
Network active = ConnectionHelper.getActiveNetwork(this);
|
||||
|
|
Loading…
Reference in a new issue