mirror of
https://gitea.invidious.io/iv-org/invidious.git
synced 2024-08-15 00:53:41 +00:00
removed unnecessary conditionals and uninitialized variable declarations
Signed-off-by: thtmnisamnstr <gavinj1984@gmail.com>
This commit is contained in:
parent
b3eea6ab3e
commit
3341929060
1 changed files with 2 additions and 13 deletions
|
@ -31,12 +31,6 @@ struct Invidious::User
|
|||
end
|
||||
|
||||
def parse_playlist_export_csv(user : User, raw_input : String)
|
||||
playlist = uninitialized InvidiousPlaylist
|
||||
title = uninitialized String
|
||||
description = uninitialized String
|
||||
visibility = uninitialized String
|
||||
privacy = uninitialized PlaylistPrivacy
|
||||
|
||||
# Split the input into head and body content
|
||||
raw_head, raw_body = raw_input.split("\n\n", limit: 2, remove_empty: true)
|
||||
|
||||
|
@ -53,13 +47,8 @@ struct Invidious::User
|
|||
privacy = PlaylistPrivacy::Private
|
||||
end
|
||||
|
||||
if title && privacy && user
|
||||
playlist = create_playlist(title, privacy, user)
|
||||
end
|
||||
|
||||
if playlist && description
|
||||
Invidious::Database::Playlists.update_description(playlist.id, description)
|
||||
end
|
||||
|
||||
# Add each video to the playlist from the body content
|
||||
CSV.each_row(raw_body) do |row|
|
||||
|
|
Loading…
Reference in a new issue