From cf2a45e862c326ece5f35b05e0fe1ea6f7de5336 Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Mon, 3 Oct 2022 15:15:59 +0200 Subject: [PATCH] Cleanup --- sbapp/main.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sbapp/main.py b/sbapp/main.py index ee99701..61d36aa 100644 --- a/sbapp/main.py +++ b/sbapp/main.py @@ -73,12 +73,11 @@ class SidebandApp(MDApp): self.title = "Sideband" self.app_state = SidebandApp.STARTING self.android_service = None + self.app_dir = plyer.storagepath.get_application_dir() if RNS.vendor.platformutils.get_platform() == "android": - self.app_dir = plyer.storagepath.get_application_dir() self.sideband = SidebandCore(self, is_client=True, android_app_dir=self.app_dir) else: - self.app_dir = None self.sideband = SidebandCore(self, is_client=False) self.update_ui_theme()