Fix empty blurhash

This commit is contained in:
Zoe Roux 2023-09-05 14:18:09 +02:00
parent 938ccd9215
commit 13ef0ba14a
No known key found for this signature in database

View File

@ -81,7 +81,7 @@ namespace Kyoo.Abstractions.Models
public Image(string source, string? blurhash = null) public Image(string source, string? blurhash = null)
{ {
Source = source; Source = source;
Blurhash = blurhash ?? "00000000000000"; Blurhash = blurhash ?? "000000";
} }
public class ImageConvertor : TypeConverter public class ImageConvertor : TypeConverter