diff options
author | Mark Felder <feld@feld.me> | 2024-05-28 09:43:35 -0400 |
---|---|---|
committer | Mark Felder <feld@feld.me> | 2024-05-28 10:19:22 -0400 |
commit | 17ebb2df8404474ef66c6a38e974143166b5e49b (patch) | |
tree | 1391b67d570e2c3641f096ac8c12fa1d6d07ab7c /changelog.d | |
parent | 18835bf7012e8e234eb27456a437f4d1e8796645 (diff) | |
download | pleroma-17ebb2df8404474ef66c6a38e974143166b5e49b.tar.gz pleroma-17ebb2df8404474ef66c6a38e974143166b5e49b.zip |
Dialyzer: fix pattern matches preventing video thumbnailing from working
lib/pleroma/web/media_proxy/media_proxy_controller.ex:154:pattern_match
The pattern can never match the type.
Pattern:
{:ok, _thumbnail_binary}
Type:
{:error, boolean() | {:ffmpeg, :command_not_found}}
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/video-thumbs.fix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/video-thumbs.fix b/changelog.d/video-thumbs.fix new file mode 100644 index 000000000..03e862f3d --- /dev/null +++ b/changelog.d/video-thumbs.fix @@ -0,0 +1 @@ +Video thumbnails were not being generated due to a negative cache lookup logic error |