1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-07-05 16:38:17 -04:00

Fix merge error

This commit is contained in:
Shelikhoo 2019-10-30 20:15:31 +08:00
parent 35e9da8ca6
commit aecf18af0c
No known key found for this signature in database
GPG Key ID: C4D5E79D22B25316

View File

@ -3,7 +3,6 @@ package log
import (
"context"
"strings"
"context"
"v2ray.com/core/common/serial"
)
@ -61,5 +60,5 @@ func AccessMessageFromContext(ctx context.Context) *AccessMessage {
if accessMessage, ok := ctx.Value(accessMessageKey).(*AccessMessage); ok {
return accessMessage
}
return nil
return nil
}