From 654c0e5e569ed570cea8b32525d4444672b52f8e Mon Sep 17 00:00:00 2001 From: Jordan Petridis Date: Wed, 3 Oct 2018 14:40:22 +0300 Subject: [PATCH] Player: Remove Initialization test When constucting Player in the Sandbox, it tries to use X-11 for dbus-autolaunch which is disabled in the flatpak environment. It fails with the following error: D-Bus error: Using X11 for dbus-daemon autolaunch was disabled at compile time, set your DBUS_SESSION_BUS_ADDRESS instead (org.freedesktop.DBus.Error.NotSupported) --- podcasts-gtk/src/main.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/podcasts-gtk/src/main.rs b/podcasts-gtk/src/main.rs index 32ce1e0..6d33831 100644 --- a/podcasts-gtk/src/main.rs +++ b/podcasts-gtk/src/main.rs @@ -171,7 +171,6 @@ fn test_stuff() -> Result<(), failure::Error> { appnotif::InAppNotification::default(); show_menu::ShowMenu::default(); - player::PlayerWidget::default(); Ok(()) }