File tree Expand file tree Collapse file tree
MiniMediaMetadataAPI.Application/Repositories Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -197,7 +197,7 @@ FROM soundcloud_track track
197197 join soundcloud_playlist_track spt on spt.trackId = track.Id and spt.UserId = @artistId
198198 join soundcloud_playlist playlist on playlist.Id = spt.PlaylistId and playlist.UserId = @artistId
199199 join soundcloud_user u on u.Id = playlist.UserId
200- where lower(track.Title) % lower(@trackName) and publishermetadata_id != '0'" ;
200+ where lower(track.Title) % lower(@trackName) and track. publishermetadata_id != '0'" ;
201201
202202 await using var conn = new NpgsqlConnection ( _databaseConfiguration . ConnectionString ) ;
203203 await conn . OpenAsync ( ) ;
@@ -292,7 +292,7 @@ FROM soundcloud_track track
292292 join soundcloud_playlist_track spt on spt.trackId = track.Id
293293 join soundcloud_playlist playlist on playlist.Id = spt.PlaylistId and playlist.UserId = spt.UserId
294294 join soundcloud_user u on u.Id = playlist.UserId
295- where track.Id = @trackId and publishermetadata_id != '0'" ;
295+ where track.Id = @trackId and track. publishermetadata_id != '0'" ;
296296
297297 await using var conn = new NpgsqlConnection ( _databaseConfiguration . ConnectionString ) ;
298298 await conn . OpenAsync ( ) ;
You can’t perform that action at this time.
0 commit comments