Fix broken JSON

This commit is contained in:
Seednode 2024-02-08 22:10:09 -06:00
parent c6c1cf7e5d
commit e910b9f8d1
2 changed files with 2 additions and 2 deletions

View File

@ -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 {

View File

@ -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 (