Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mariusandra committed Jul 23, 2024
1 parent b23fa4d commit e4e5d94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hogvm/typescript/src/stl/stl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export const STL: Record<string, (args: any[], name: string, timeout: number) =>
} else if (x.__hogDate__) {
return toHogDate(x.year, x.month, x.day)
} else if (x.__hogError__) {
return newHogError(x.name, x.message, x.payload)
return newHogError(x.type, x.message, x.payload)
}
// All other objects will
const map = new Map()
Expand Down

0 comments on commit e4e5d94

Please sign in to comment.