mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-12 19:28:24 +00:00
fix(user/imports.cr): splitting error fixed
This commit is contained in:
parent
8288878c55
commit
7eb166fd4d
@ -33,7 +33,7 @@ struct Invidious::User
|
||||
# Parse a CSV Google Takeout - Youtube Playlist file
|
||||
def parse_playlist_export_csv(user : User, playlist_name : String, raw_input : String)
|
||||
# Split the input into head and body content
|
||||
raw_head, raw_body = raw_input.split("\n\n", limit: 2, remove_empty: true)
|
||||
raw_head, raw_body = raw_input.split("\n", limit: 2, remove_empty: true)
|
||||
|
||||
# Create the playlist from the head content
|
||||
csv_head = CSV.new(raw_head.strip('\n'), headers: true)
|
||||
|
Loading…
Reference in New Issue
Block a user