Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 1f855bc1 authored by Marvin W.'s avatar Marvin W. 🐿️
Browse files

Ignore exceptions in fake signature InitProvider

parent dd8c5601
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -23,7 +23,10 @@ public class InitProvider extends ContentProvider {
        Log.d(TAG, "onCreate");
        if (!isServiceRunning(getContext(), getContext().getPackageName(), SignatureService.class.getName())) {
            Intent intent = new Intent(getContext(), SignatureService.class);
            try {
                getContext().startService(intent);
            } catch (Exception ignored) {
            }
        }
        return false;
    }