diff options
author | Aylur <[email protected]> | 2024-05-29 20:13:11 +0200 |
---|---|---|
committer | Aylur <[email protected]> | 2024-05-29 20:13:11 +0200 |
commit | 785867f60e9d36df52180e92dc2e1ffb7d3f652c (patch) | |
tree | af9f8e689b11700aac1ca4ec1d32127fd9c31219 | |
parent | ecf4783a22fe830dbbe72082e376073684eabfc4 (diff) |
fix(astal.vala): fix super.vfunc_request
-rw-r--r-- | gjs/src/application.ts | 2 | ||||
-rw-r--r-- | node/src/application.ts | 2 | ||||
-rw-r--r-- | python/astal/application.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/gjs/src/application.ts b/gjs/src/application.ts index b34e798..42bbb72 100644 --- a/gjs/src/application.ts +++ b/gjs/src/application.ts @@ -47,7 +47,7 @@ class AstalJS extends Astal.Application { ) }) } else { - super.vfunc_response(msg, conn) + super.vfunc_request(msg, conn) } } diff --git a/node/src/application.ts b/node/src/application.ts index f7598f8..552f2a9 100644 --- a/node/src/application.ts +++ b/node/src/application.ts @@ -45,7 +45,7 @@ class AstalJS extends Astal.Application { }) } else { // @ts-expect-error missing type - super.vfunc_response(msg, conn) + super.vfunc_request(msg, conn) } } diff --git a/python/astal/application.py b/python/astal/application.py index de0ba18..b5d5c41 100644 --- a/python/astal/application.py +++ b/python/astal/application.py @@ -20,7 +20,7 @@ class _Application(Astal.Application): ), ) else: - super().do_response(msg, conn) + super().do_request(msg, conn) def start( self, |