mirror of
https://gitlab.steamos.cloud/holo/steamos-manager.git
synced 2025-07-16 03:06:47 -04:00
Fix bus name
This commit is contained in:
parent
a057113d2a
commit
ab0f6cffed
4 changed files with 5 additions and 5 deletions
|
@ -134,7 +134,7 @@ pub fn anyhow_to_zbus_fdo(error: Error) -> zbus::fdo::Error {
|
|||
|
||||
async fn create_connection() -> Result<Connection> {
|
||||
let connection = ConnectionBuilder::system()?
|
||||
.name("com.steampowered.SteamOSManager1.Manager")?
|
||||
.name("com.steampowered.SteamOSManager1")?
|
||||
.build()
|
||||
.await?;
|
||||
let manager = manager::SteamOSManager::new(connection.clone()).await?;
|
||||
|
@ -148,7 +148,7 @@ async fn create_connection() -> Result<Connection> {
|
|||
#[tokio::main]
|
||||
async fn main() -> Result<()> {
|
||||
// This daemon is responsible for creating a dbus api that steam client can use to do various OS
|
||||
// level things. It implements com.steampowered.SteamOSManager1 interface
|
||||
// level things. It implements com.steampowered.SteamOSManager1.Manager interface
|
||||
|
||||
let stdout_log = fmt::layer();
|
||||
let subscriber = Registry::default().with(stdout_log);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue