From f3109af80d49c7baac52514e1d4f6d3f8914dcca Mon Sep 17 00:00:00 2001 From: Andrew Gerrand Date: Mon, 2 May 2016 09:01:04 -0700 Subject: [PATCH] playground: fix share URL The baseURL is used to construct the target URLs for both /compile and /share. When I changed it recently, I forgot about the latter case. Change-Id: Icde617b1cc3d31d98ca4b62e313b9d886253f1cc Reviewed-on: https://go-review.googlesource.com/22689 Reviewed-by: Brad Fitzpatrick --- playground/common.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playground/common.go b/playground/common.go index 2d11d5d4..186537a6 100644 --- a/playground/common.go +++ b/playground/common.go @@ -15,7 +15,7 @@ import ( "net/http" ) -const baseURL = "https://golang.org/compile?output=json" +const baseURL = "https://golang.org" func init() { http.HandleFunc("/compile", bounce)