From ee30189224579977a6c4d27aba4e1f0aacd91d57 Mon Sep 17 00:00:00 2001 From: FChannel <=> Date: Thu, 28 Jan 2021 15:52:22 -0800 Subject: removed \n from tripcode --- main.go | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'main.go') diff --git a/main.go b/main.go index e03bae6..a430387 100644 --- a/main.go +++ b/main.go @@ -422,7 +422,7 @@ func main() { CheckError(err, "error with follow req") _, pass := GetPasswordFromSession(r) - + req.Header.Set("Authorization", "Basic " + pass) req.Header.Set("Content-Type", activitystreams) @@ -899,7 +899,9 @@ func CreateTripCode(input string) string { CheckError(err, "error with create trip code") - return out.String() + code := strings.Split(out.String(), " ") + + return code[0] } func CreateNameTripCode(input string) string { @@ -1615,7 +1617,10 @@ func MakeActivityRequest(db *sql.DB, activity Activity) { req, err := http.NewRequest("POST", actor.Inbox, bytes.NewBuffer(j)) req.Header.Set("Content-Type", activitystreams) - req.Header.Set("Authorization", "Basic " + auth) + + if activity.Type == "Create" { + req.Header.Set("Authorization", "Basic " + auth) + } CheckError(err, "error with sending activity req to") -- cgit v1.2.3