Fix(user/importers): Fixed typos

This commit is contained in:
ThatMatrix 2024-07-11 02:41:08 +02:00
parent 16f3f0979f
commit d3eca5ff20
2 changed files with 3 additions and 4 deletions

View File

@ -30,7 +30,7 @@ services:
# domain:
# https_only: false
# statistics_enabled: false
hmac_key: "CHANGE_ME!!"
hmac_key: "ahyeef5xahyohliefi3A"
healthcheck:
test: wget -nv --tries=1 --spider http://127.0.0.1:3000/api/v1/trending || exit 1
interval: 30s

View File

@ -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.strip('\n').split("\n\n", limit: 2, remove_empty: true)
raw_head, raw_body = raw_input.split("\n\n", limit: 2, remove_empty: true)
# Create the playlist from the head content
csv_head = CSV.new(raw_head.strip('\n'), headers: true)
@ -205,7 +205,7 @@ struct Invidious::User
extension = filename_array.last
if extension == "csv" || type == "text/csv"
playlist = parse_playlist_export_csv(user, playlist_name,playlist_name, body)
playlist = parse_playlist_export_csv(user, playlist_name, body)
if playlist
return true
else
@ -217,7 +217,6 @@ struct Invidious::User
end
def from_youtube_wh(user : User, body : String, filename : String, type : String) : Bool
filename = filename.split(".")
extension = filename.split(".").last
if extension == "json" || type == "application/json"