#1594 Collaborative Repositories missing suburl on Dashboard

This commit is contained in:
Unknwon 2015-09-07 05:57:19 -04:00
parent 232c22208c
commit 645d4d0c5b
5 changed files with 5 additions and 5 deletions

View file

@ -77,7 +77,7 @@ func ToUtf8WithErr(content []byte) (error, string) {
encoding, _ := charset.Lookup(charsetLabel)
if encoding == nil {
return fmt.Errorf("unknow char decoder %s", charsetLabel), string(content)
return fmt.Errorf("unknown char decoder %s", charsetLabel), string(content)
}
result, n, err := transform.String(encoding.NewDecoder(), string(content))