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

Commit b97b4e76 authored by Mohit Mali's avatar Mohit Mali
Browse files

Implemented provider at setting side

parent 1cc1dbec
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -426,7 +426,8 @@ public class AppInfoDashboardFragment extends DashboardFragment

    private String retrieveStatus(){
        String status = null;
        Cursor c = getActivity().getContentResolver().query(Uri.parse("content://custom.microg.STATUS.AUTHORITY/cte"), null, OTAProvider.id+"=?", new String[]{"1"}, OTAProvider.Status);
        Cursor c = getActivity().getContentResolver().query(Uri.parse("content://custom.microg.STATUS.AUTHORITY/cte"), null,
                MicroGProvider.id+"=?", new String[]{"1"}, MicroGProvider.Status);
        if (c.moveToFirst()) {
            do {
                status = c.getString(c.getColumnIndex(MicroGProvider.installStatus));