From 45aaf27bcb676e245371bf46b710ab498cdcfcb5 Mon Sep 17 00:00:00 2001 From: knotteye Date: Sun, 30 May 2021 21:58:16 -0500 Subject: Better accept header parsing --- main.go | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'main.go') diff --git a/main.go b/main.go index bd88c41..35b9fe3 100644 --- a/main.go +++ b/main.go @@ -33,7 +33,6 @@ var SiteEmailPassword = GetConfigValue("emailpass") var SiteEmailServer = GetConfigValue("emailserver") //mail.fchan.xyz var SiteEmailPort = GetConfigValue("emailport") //587 -var ldjson = "application/ld+json" var activitystreams = "application/ld+json; profile=\"https://www.w3.org/ns/activitystreams\"" func main() { @@ -137,7 +136,7 @@ func main() { } if mainActor { - if accept == activitystreams || accept == ldjson { + if acceptActivity(accept) { GetActorInfo(w, db, Domain) return } @@ -180,7 +179,7 @@ func main() { } if actorMain || actorMainPage { - if accept == activitystreams || accept == ldjson { + if acceptActivity(accept) { GetActorInfo(w, db, actor.Id) return } @@ -267,7 +266,7 @@ func main() { //catch all if actorPost { - if accept == activitystreams || accept == ldjson { + if acceptActivity(accept) { GetActorPost(w, db, path) return } -- cgit v1.2.3