Skip to content

Commit

Permalink
Escape spaces in data URI (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
shred authored and jsha committed Feb 14, 2017
1 parent 437a931 commit 3452937
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wfe/wfe.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ type WebFrontEndImpl struct {
nonce *nonceMap
}

const ToSURL = "data:text/plain,Do what thou wilt"
const ToSURL = "data:text/plain,Do%20what%20thou%20wilt"

func New(log *log.Logger) (WebFrontEndImpl, error) {
return WebFrontEndImpl{
Expand Down

0 comments on commit 3452937

Please sign in to comment.