PR feedback

This commit is contained in:
matthewmcgarvey 2022-01-05 20:15:42 -06:00
parent ba0bc72d0b
commit 2eb7c5c037

View File

@ -206,13 +206,13 @@ module Invidious::Database::PlaylistVideos
PG_DB.exec(request, index)
end
def delete_by_playlist(playlist_id : String)
def delete_by_playlist(plid : String)
request = <<-SQL
DELETE FROM playlist_videos *
WHERE plid = $1;
WHERE plid = $1
SQL
PG_DB.exec(request, playlist_id)
PG_DB.exec(request, plid)
end
# -------------------