Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(249)

Unified Diff: experimental/webtry/webtry.go

Issue 644253003: fix display of fiddles that DON'T have compile errors (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « experimental/webtry/res/js/webtry.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: experimental/webtry/webtry.go
diff --git a/experimental/webtry/webtry.go b/experimental/webtry/webtry.go
index 34aa47e2827a3e80342f5a6c715df7162944c786..2096f7d778f523c2a2dbf6d49c65e3f365c36b4c 100644
--- a/experimental/webtry/webtry.go
+++ b/experimental/webtry/webtry.go
@@ -937,9 +937,8 @@ func mainHandler(w http.ResponseWriter, r *http.Request) {
}
m := response{
- Message: message,
- Img: base64.StdEncoding.EncodeToString([]byte(png)),
- Hash: hash,
+ Img: base64.StdEncoding.EncodeToString([]byte(png)),
+ Hash: hash,
}
resp, err := json.Marshal(m)
if err != nil {
« no previous file with comments | « experimental/webtry/res/js/webtry.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698