allo-
allo-
The recent git version seems to break the workaround of creating an assistant with `user` set to `{{user}}` as the `user` variable seems to be no longer stored together with...
The migration seems to fail earlier and probably the force skipped it: ``` Migrating: 2019_08_12_222938_create_avatars_for_existing_contacts In Connection.php line 712: SQLSTATE[42S22]: Column not found: 1054 Unknown column 'contacts.deleted_at' in 'where clause'...
Possibly related to #6316
Looks like 6f887dfb7590ee62833a8d99617e0993eb1a83db accidentally deleted database/migrations/2017_02_10_215705_remove_deleted_at_from_contact.php. Git lists it as renamed to to database/migrations/2022_01_02_222042_contact_soft_delete.php but with changes that revert the effect: ``` index d244989b8..1abeb73a0 100644 --- a/database/migrations/2017_02_10_215705_remove_deleted_at_from_contact.php +++ b/database/migrations/2022_01_02_222042_contact_soft_delete.php @@...
Workaround (I hope I didn't break anything): Add the column before the migrations from 2019 to 2022: alter table contacts add column deleted_at timestamp null; I hope as the 2022...
Is there a hook for adblock? On the desktop it is easy to achieve by adblock or user scripts/css
What python and tensorflow version are you using? I have the problem, that it seems to get worse with newer python/cuda/tensorflow versions to get it to run and currently I...
Thank you. If you don't mind I'll wait to give feedback until the release is available in F-Droid, so I can install it with the same signature.
With 6.715 I have on the settings screen a back and a next button and when tapping the next button the next button still disappears during the connection test. I...
I think you can allocate a block that cannot be written to (except you delete the snapshot) by creating a file and then a read-only snapshot containing that file, but...