RPRX 2021-03-08 18:12:38 +00:00 committed by GitHub
parent d7cd71b741
commit 3de5af0611
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,11 +40,9 @@ func (err *Error) pkgPath() string {
return "" return ""
} }
path := reflect.TypeOf(err.pathObj).PkgPath() path := reflect.TypeOf(err.pathObj).PkgPath()
for i := 0; i < len(path); i++ { if len(path) >= trim {
if path[i] == '/' {
return path[trim:] return path[trim:]
} }
}
return path return path
} }