Skip to content

Commit

Permalink
fix aoty bug
Browse files Browse the repository at this point in the history
  • Loading branch information
th0mk committed Jan 3, 2025
1 parent df7ab5e commit a471f65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FMBot.Persistence/Repositories/AlbumRepository.cs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ FROM public.albums
WHERE (UPPER(name), UPPER(artist_name)) IN (
SELECT UPPER(CAST(unnest(@albumNames) AS CITEXT)),
UPPER(CAST(unnest(@artistNames) AS CITEXT))
)";
) AND release_date != '0000'";

DefaultTypeMap.MatchNamesWithUnderscores = true;
var albumData = await connection.QueryAsync<AlbumData>(getAlbumQuery, new
Expand Down

0 comments on commit a471f65

Please sign in to comment.