Mees Frensel

Results 9 comments of Mees Frensel

I cannot reproduce this, neither for images nor videos. Considering that your SQL query references the `assets` table which has been renamed to `asset` (not the missing `s`), are you...

I think you're right, would be a breaking change for api/sdk users. Hmm that's really annoying, since it's supposed to remove the need for these dumb `!includes(00:00:00.000)` checks, not break...

I don't have the time to extensively test this out and write proper test cases, but a similar change as below should probably do the trick. https://github.com/immich-app/immich/blob/1e1cf0d1feb914fb260b473c862d38127440d0ff/server/src/services/media.service.ts#L302 ```diff const fullsizeOptions...

I'm not convinced that the crash is even related to thumbnail generation. If you look at the timestamps, there are 20 seconds between the thumbnail gen errors and the actual...

(on Android) I can't exactly reproduce this, but something similar, I tried: 1. enable loading preview, enable loading originals 2. disable loading preview, enable loading originals 3. disable loading preview,...

So we would need to implement collated text sorting. Postgres has built-in support for this, of course: https://www.postgresql.org/docs/17//collation.html Kysely has support too, but it's undocumented. Simple to use though: ```typescript...

I just ran into this issue as well and can confirm it and the solution provided. Build process was generating _torchMlir.cpython-3xx-x86_64-linux-gnu.so using the 'global' available python instead of the virtual...

This is added to the development instructions in #4024 by the way.

I did some investigation on this issue. The asset order returned by the server is correct, and the jumbling happens client-side. Immich uses maplibre-gl in the [map component](https://github.com/immich-app/immich/blob/9cc88ed2a6df8dbd3cda2f6d38c2a03524761023/web/src/lib/components/shared-components/map/map.svelte), which in...