Skip to content

Commit 2896517

Browse files
committed
Fix a nullable warning
1 parent bc00760 commit 2896517

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Shoko.Server/Repositories/Cached/AniDB/AniDB_AnimeRepository.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public override void RegenerateDb()
2626
anime.ResetPreferredTitle();
2727
}
2828

29-
public SVR_AniDB_Anime GetByAnimeID(int animeID)
29+
public SVR_AniDB_Anime? GetByAnimeID(int animeID)
3030
=> ReadLock(() => _animeIDs!.GetOne(animeID));
3131

3232
public List<SVR_AniDB_Anime> GetForDate(DateTime startDate, DateTime endDate)

0 commit comments

Comments
 (0)