From d8be637dca922b23a90e162e8d5fba25a3219806 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Thu, 15 Jul 2021 19:46:47 +0200 Subject: [PATCH] main: Replace Meta.register_with_session() The functionality moved into the new Meta.Context. Part-of: --- js/ui/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/main.js b/js/ui/main.js index 979fcefa5..549ecedd8 100644 --- a/js/ui/main.js +++ b/js/ui/main.js @@ -258,7 +258,7 @@ function _initializeUI() { // We're ready for the session manager to move to the next phase GLib.idle_add(GLib.PRIORITY_DEFAULT, () => { Shell.util_sd_notify(); - Meta.register_with_session(); + global.context.notify_ready(); return GLib.SOURCE_REMOVE; });