Skip to content

Commit

Permalink
Update xdi
Browse files Browse the repository at this point in the history
  • Loading branch information
onanying committed Nov 6, 2023
1 parent 76d6ab6 commit 8b8163e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xdi/container.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ func (t *Container) Object(name string) (*Object, error) {
func (t *Container) Populate(name string, ptr interface{}) (err error) {
defer func() {
if e := recover(); e != nil {
err = errors.New(fmt.Sprint(e))
err = errors.New("xdi: " + fmt.Sprint(e))
}
}()

Expand Down

0 comments on commit 8b8163e

Please sign in to comment.