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

Commit 2fbdd9ab authored by narinder Rana's avatar narinder Rana
Browse files

test to finding text 3

parent 5d7872db
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -143,7 +143,7 @@ class DavService: android.app.Service() {
        val collectionDao = db.collectionDao()

        val service = db.serviceDao().get(serviceId) ?: throw IllegalArgumentException("Service not found")
        val account = Account(service.accountName, service.accountType)
        val account = Account("Test 6 :: "+service.accountName, service.accountType)

        val homeSets = homeSetDao.getByService(serviceId).associateBy { it.url }.toMutableMap()
        val collections = collectionDao.getByService(serviceId).associateBy { it.url }.toMutableMap()
+1 −1
Original line number Diff line number Diff line
@@ -34,7 +34,7 @@ class PackageChangedReceiver: BroadcastReceiver() {
            // check all accounts and (de)activate OpenTasks if a CalDAV service is defined
            val db = AppDatabase.getInstance(context)
            db.serviceDao().getByType(Service.TYPE_CALDAV).forEach { service ->
                val account = Account(service.accountName, service.accountType)
                val account = Account("Test 7 :: "+service.accountName, service.accountType)
                if (tasksInstalled) {
                    if (ContentResolver.getIsSyncable(account, OpenTasks.authority) <= 0) {
                        ContentResolver.setIsSyncable(account, OpenTasks.authority, 1)
+1 −1
Original line number Diff line number Diff line
@@ -131,7 +131,7 @@ data class Collection(
                    url = url,
                    privWriteContent = privWriteContent,
                    privUnbind = privUnbind,
                    displayName = displayName,
                    displayName ="Test 8 ::"+ displayName,
                    description = description,
                    color = color,
                    timezone = timezone,