Fix loading overridden translations from ${DataFolder}/resources/i18n

This commit is contained in:
Deluan 2022-02-10 14:48:41 -05:00
parent 50ff8bcce7
commit 028723f721
5 changed files with 17 additions and 21 deletions

View file

@ -14,20 +14,19 @@ import (
var (
//go:embed *
fsys embed.FS
FS fs.FS
)
func FS() fs.FS {
return utils.MergeFS{
Base: fsys,
Overlay: os.DirFS(path.Join(conf.Server.DataFolder, "resources")),
}
}
func Asset(path string) ([]byte, error) {
f, err := FS.Open(path)
f, err := FS().Open(path)
if err != nil {
return nil, err
}
return io.ReadAll(f)
}
func init() {
FS = utils.MergeFS{
Base: fsys,
Overlay: os.DirFS(path.Join(conf.Server.DataFolder, "resources")),
}
}