Fix broken JSON
This commit is contained in:
parent
c6c1cf7e5d
commit
e910b9f8d1
|
@ -58,7 +58,7 @@ func makeTree(list []string) ([]byte, error) {
|
||||||
return []byte{}, err
|
return []byte{}, err
|
||||||
}
|
}
|
||||||
|
|
||||||
return bytes.ReplaceAll(resp, []byte(": null"), []byte{}), nil
|
return resp, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (index *fileIndex) List() []string {
|
func (index *fileIndex) List() []string {
|
||||||
|
|
|
@ -17,7 +17,7 @@ import (
|
||||||
|
|
||||||
const (
|
const (
|
||||||
AllowedCharacters string = `^[A-z0-9.\-_]+$`
|
AllowedCharacters string = `^[A-z0-9.\-_]+$`
|
||||||
ReleaseVersion string = "8.7.1"
|
ReleaseVersion string = "8.7.2"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
|
Loading…
Reference in New Issue