update dependencies and windows ffmpeg (#1462)

* update dependencies

* update windows ffmpeg version
This commit is contained in:
Jason Dove
2023-10-05 19:14:06 -05:00
committed by GitHub
parent 46bf9ef990
commit b39dd693f0
11 changed files with 14 additions and 14 deletions
@@ -7,7 +7,7 @@ namespace ErsatzTV.Infrastructure.Sqlite.Data;
public abstract class SqliteTypeHandler<T> : SqlMapper.TypeHandler<T>
{
// Parameters are converted by Microsoft.Data.Sqlite
public override void SetValue(IDbDataParameter parameter, T value)
public override void SetValue(IDbDataParameter parameter, T? value)
=> parameter.Value = value;
}