Fix type of device id to Integer

Fixes #889
This commit is contained in:
AsamK 2022-02-11 21:01:02 +01:00
parent fd8ba66509
commit 6dabf4550b
2 changed files with 2 additions and 2 deletions

View file

@ -466,7 +466,7 @@ public interface Signal extends DBusInterface {
}
}
@DBusProperty(name = "Id", type = Long.class, access = DBusProperty.Access.READ)
@DBusProperty(name = "Id", type = Integer.class, access = DBusProperty.Access.READ)
@DBusProperty(name = "Name", type = String.class)
@DBusProperty(name = "Created", type = String.class, access = DBusProperty.Access.READ)
@DBusProperty(name = "LastSeen", type = String.class, access = DBusProperty.Access.READ)