Skip to content

Commit

Permalink
refactor: capitalize D-Bus service name
Browse files Browse the repository at this point in the history
  • Loading branch information
timschneeb committed Jul 17, 2024
1 parent 082a856 commit 5afccf2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion GalaxyBudsClient/Cli/Ipc/IpcService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace GalaxyBudsClient.Cli.Ipc;

public static class IpcService
{
public static string ServiceName => "me.timschneeberger.galaxybudsclient";
public static string ServiceName => "me.timschneeberger.GalaxyBudsClient";
private static string TcpAddress => "tcp:host=localhost,port=54533";
private static DeviceObject? _deviceObject;

Expand Down
2 changes: 1 addition & 1 deletion GalaxyBudsClient/Cli/Ipc/Objects/ApplicationObject.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
[assembly: InternalsVisibleTo(Connection.DynamicAssemblyName)]
namespace GalaxyBudsClient.Cli.Ipc.Objects;

[DBusInterface("me.timschneeberger.galaxybudsclient.Application")]
[DBusInterface("me.timschneeberger.GalaxyBudsClient.Application")]
public interface IApplicationObject : IDBusObject
{
Task ActivateAsync();
Expand Down
2 changes: 1 addition & 1 deletion GalaxyBudsClient/Cli/Ipc/Objects/DeviceObject.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
[assembly: InternalsVisibleTo(Connection.DynamicAssemblyName)]
namespace GalaxyBudsClient.Cli.Ipc.Objects;

[DBusInterface("me.timschneeberger.galaxybudsclient.Device")]
[DBusInterface("me.timschneeberger.GalaxyBudsClient.Device")]
public interface IDeviceObject : IDBusObject
{
Task<object> GetAsync(string prop);
Expand Down

0 comments on commit 5afccf2

Please sign in to comment.