2024-09-23, 11:14 PM
(This post was last modified: 2024-09-23, 11:36 PM by theguymadmax. Edited 1 time in total.)
https://github.com/jellyfin/jellyfin/blo...er.cs#L522
It's going to set the primary image has the thumb according this code. It was part of this PR. I'm still not clear on exactly what you are trying to accomplish, so I'm not sure if this is a bug or not.
Code:
if (type == ImageType.Primary && item is Episode)
{
path = Path.Combine(Path.GetDirectoryName(item.Path), filename + "-thumb" + extension);
}
It's going to set the primary image has the thumb according this code. It was part of this PR. I'm still not clear on exactly what you are trying to accomplish, so I'm not sure if this is a bug or not.