1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-11 10:20:42 +00:00

added rename alias for index.html

This commit is contained in:
Shelikhoo 2021-03-20 21:37:06 +00:00
parent 6c1abd9c6a
commit 69da0da0e4
No known key found for this signature in database
GPG Key ID: C4D5E79D22B25316

View File

@ -73,6 +73,9 @@ func (f *Forwarder) Close() error {
func BridgeResource(rw http.ResponseWriter, r *http.Request, path string) {
content := path
if content == "" {
content = "index.html"
}
data, err := securedload.GetAssetSecured("browserforwarder/" + content)
if err != nil {
err = newError("cannot load necessary resources").Base(err)