From 1ea4c41af250cf566ba84fdfd69ef1429748a6bf Mon Sep 17 00:00:00 2001 From: Mikal Stordal Date: Sun, 29 Sep 2024 14:19:03 +0200 Subject: [PATCH] misc: add missing nullable indicator --- Shoko.Server/Models/SVR_VideoLocal.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shoko.Server/Models/SVR_VideoLocal.cs b/Shoko.Server/Models/SVR_VideoLocal.cs index c130a4af4..c703683ee 100644 --- a/Shoko.Server/Models/SVR_VideoLocal.cs +++ b/Shoko.Server/Models/SVR_VideoLocal.cs @@ -157,7 +157,7 @@ public bool HasAnyEmptyHashes() IReadOnlyList IVideo.Locations => Places; - IAniDBFile IVideo.AniDB => AniDBFile; + IAniDBFile? IVideo.AniDB => AniDBFile; IHashes IVideo.Hashes => this;