From 7b9b7688a112011455bbd410fa318b69834093d5 Mon Sep 17 00:00:00 2001 From: alexpin Date: Tue, 25 Feb 2020 21:03:06 +0200 Subject: [PATCH] formatter --- client/getMusicUploads.go | 2 +- client/getUserUploads.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/getMusicUploads.go b/client/getMusicUploads.go index d980ed7..e3b95de 100644 --- a/client/getMusicUploads.go +++ b/client/getMusicUploads.go @@ -8,7 +8,7 @@ import ( // GetMusicUploads - Get all uploads by given music func GetMusicUploads(url string) ([]models.Upload, error) { - jsMethod := fmt.Sprintf("bootstrapIteratingVideos(%d)", config.Config.Limit) + jsMethod := fmt.Sprintf("bootstrapIteratingVideos(%d)", config.Config.Limit) actionOutput, err := executeClientAction(url, jsMethod) if err != nil { return nil, err diff --git a/client/getUserUploads.go b/client/getUserUploads.go index 30f0d70..46a7070 100644 --- a/client/getUserUploads.go +++ b/client/getUserUploads.go @@ -8,7 +8,7 @@ import ( // GetUserUploads - Get all uploads by user func GetUserUploads(username string) ([]models.Upload, error) { - jsMethod := fmt.Sprintf("bootstrapIteratingVideos(%d)", config.Config.Limit) + jsMethod := fmt.Sprintf("bootstrapIteratingVideos(%d)", config.Config.Limit) actionOutput, err := executeClientAction(`https://www.tiktok.com/@`+username, jsMethod) if err != nil { return nil, err