mrtnmtth

Results 9 comments of mrtnmtth

I am currently working on something along those lines. These are the features so far: - If the message link directs to an image, it will be downloaded and shown...

F-Droid is not possible because the app uses GCM.

Updating dependency `com.journeyapps:zxing-android-embedded` fixes this issue since it adds proper permission support to the library. Changelog excerpt: > ### 3.1.0 (2015-12-29) > * Add support for Android 6 runtime permissions...

Added commit updating zxing dependency to fix camera permission. Ref #12

The project is unmaintained but the servers are up and running and everything should be working. The option is only for setting a custom ID. There is no build-in way...

Took me a while to figure out what you are trying to accomplish. As far as I get it, you want to send a DELETE request to the messages API....

I am hitting the same issue after upgrading to CakePHP 5.0 The issue seems to be triggered if the entity id is `null` and the id is marked `dirty` Here...

Reproduce: change `Cake\Test\TestCase\ORM\TableTest::testSaveWithClonedEntity` to assign `null` to `id` instead of calling `unset()` ```patch diff --git a/tests/TestCase/ORM/TableTest.php b/tests/TestCase/ORM/TableTest.php index 6cd34915e8..f0da3b1271 100644 --- a/tests/TestCase/ORM/TableTest.php +++ b/tests/TestCase/ORM/TableTest.php @@ -6160,7 +6160,7 @@ class TableTest...

The use case is cloning an entity: keeping all its properties apart from the `id` to save it as a new record. I now changed the code to use `unset`...