summaryrefslogtreecommitdiff
path: root/gjs
diff options
context:
space:
mode:
authorAylur <[email protected]>2024-05-29 20:13:11 +0200
committerAylur <[email protected]>2024-05-29 20:13:11 +0200
commit785867f60e9d36df52180e92dc2e1ffb7d3f652c (patch)
treeaf9f8e689b11700aac1ca4ec1d32127fd9c31219 /gjs
parentecf4783a22fe830dbbe72082e376073684eabfc4 (diff)
fix(astal.vala): fix super.vfunc_request
Diffstat (limited to 'gjs')
-rw-r--r--gjs/src/application.ts2
1 files changed, 1 insertions, 1 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)
}
}