Adam Cigánek
Adam Cigánek
I'm sometimes experiencing panics like this when calling `BackgroundSession::join`: ``` called `Result::unwrap()` on an `Err` value: Os { code: 103, kind: ConnectionAborted, message: "Software caused connection abort" } ``` It...
Hello there, Seems capybara-envjs has troubles with jQuery's live events. If an event listener is bound using bind(), everything works fine, but if using live(), it does not. I put...
Hello, After my machine resumes from suspend, the F-keys are reverted back to their default multimedia behaviour. This is because the `/etc/pm/sleep.d/20-k290.sh` script is not executed anymore. This is because...
unlock notification was implemented in https://github.com/launchbadge/sqlx/pull/1658 but only when calling `sqlite3_step`. The `BEGIN` statement is executed using `sqlite3_exec` and the unlock notification is not handle there. This means that one...
I was trying to `derive(Type)` for a newtype containing `[u8; 16]` and it didn't work. It seems there is currently no impl for fixed-length arrays of `u8`. It would be...
Currently `watch` is single-producer but looking at the [source of `Sender`](https://github.com/tokio-rs/tokio/blob/master/tokio/src/sync/watch.rs#L86-L88), it seems it would be trivial to change it to multi-producer - just slap a `#[derive(Clone)]` on it. I...
It's unclear whether `Sender::send_async` is cancel-safe. That is, does it guarantee that if the future returned from it is cancelled, the message is not sent? It would be great to...
### The bug Whenever I restart the app, there are no selected backup albums despite me selecting some before the restart. ### The OS that Immich Server is running on...
Fix/workaround for #3108. It seems the bug is caused by a weird behaviour / bug in [photo_manager](https://pub.dev/packages/photo_manager): Sometimes `AssetPathEntity.fromId` throws even when called with a valid asset id (say one...