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

Unverified Commit 750b2344 authored by Patrick Lang's avatar Patrick Lang Committed by GitHub
Browse files

Fixed missing color and url in jtx Bord sync (#43)

* Fixed missing color and url in jtx Bord sync

* Update test-dev.yml

Updated jtx version
parent 357a9e3a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -55,7 +55,7 @@ jobs:
          mkdir apk && cd apk
          wget -q -O org.dmfs.tasks.apk https://f-droid.org/archive/org.dmfs.tasks_80800.apk && adb install org.dmfs.tasks.apk
          wget -q -O org.tasks.apk https://f-droid.org/archive/org.tasks_110701.apk && adb install org.tasks.apk
          wget -q -O at.techbee.jtx.apk https://f-droid.org/repo/at.techbee.jtx_100130002.apk && adb install at.techbee.jtx.apk
          wget -q -O at.techbee.jtx.apk https://f-droid.org/repo/at.techbee.jtx_101010013.apk && adb install at.techbee.jtx.apk
          cd ..
      - name: Run connected tests
        run: ./gradlew connectedCheck
+4 −0
Original line number Diff line number Diff line
@@ -1353,6 +1353,8 @@ duration?.let(props::add)
        this.classification = newData.classification
        this.status = newData.status
        this.priority = newData.priority
        this.color = newData.color
        this.url = newData.url

        this.dtstart = newData.dtstart
        this.dtstartTimezone = newData.dtstartTimezone
@@ -1580,6 +1582,8 @@ duration?.let(props::add)
        priority.let { values.put(JtxContract.JtxICalObject.PRIORITY, it) }
        values.put(JtxContract.JtxICalObject.ICALOBJECT_COLLECTIONID, collectionId)
        values.put(JtxContract.JtxICalObject.UID, uid)
        values.put(JtxContract.JtxICalObject.COLOR, color)
        values.put(JtxContract.JtxICalObject.URL, url)
        geoLat.let { values.put(JtxContract.JtxICalObject.GEO_LAT, it) }
        geoLong.let { values.put(JtxContract.JtxICalObject.GEO_LONG, it) }
        location.let { values.put(JtxContract.JtxICalObject.LOCATION, it) }