Fixed string decoding during import
This commit is contained in:
parent
e9a46b77ff
commit
7d5cafb17a
1 changed files with 0 additions and 6 deletions
|
|
@ -7,8 +7,6 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"strconv"
|
"strconv"
|
||||||
"fmt"
|
|
||||||
"github.com/astaxie/beego"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
type ItunesScanner struct{}
|
type ItunesScanner struct{}
|
||||||
|
|
@ -51,10 +49,6 @@ func (s *ItunesScanner) LoadFolder(path string) []Track {
|
||||||
|
|
||||||
func unescape(str string) string {
|
func unescape(str string) string {
|
||||||
s := strings.Replace(str, "&", "&", -1)
|
s := strings.Replace(str, "&", "&", -1)
|
||||||
s, err := url.QueryUnescape(s)
|
|
||||||
if err != nil {
|
|
||||||
beego.Warn("Error importing string", str, ":", err)
|
|
||||||
}
|
|
||||||
return s
|
return s
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue