We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6912ae2 commit 0a8b7b0Copy full SHA for 0a8b7b0
1 file changed
lib/client/proxy-object.js
@@ -5,7 +5,7 @@ const {Variant} = require('../variant');
5
const {Message} = require ('../message-type');
6
const { DBusError } = require('../errors');
7
const {
8
- assertInterfaceNameValid,
+ assertBusNameValid,
9
assertObjectPathValid,
10
isObjectPathValid,
11
isInterfaceNameValid
@@ -32,7 +32,7 @@ class ProxyObject {
32
* directly. Use {@link MessageBus#getProxyObject} to get a proxy object.
33
*/
34
constructor(bus, name, path) {
35
- assertInterfaceNameValid(name);
+ assertBusNameValid(name);
36
assertObjectPathValid(path);
37
/**
38
* The {@link MessageBus} this name belongs to.
0 commit comments