Skip to content

Commit

Permalink
Fix this in default signal handler (#263)
Browse files Browse the repository at this point in the history
  • Loading branch information
ttoino authored Jan 28, 2025
1 parent 127e9cd commit 3573ac6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lang/gjs/src/gobject.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ export function signal(
}
Object.defineProperty(target, `on_${name.replace("-", "_")}`, {
value: function (...args: any[]) {
return og(...args)
return og.apply(this, args)
},
})
}
Expand Down

0 comments on commit 3573ac6

Please sign in to comment.