From 8cc47e9dc01e009ee8aaa9fe3d1ee5576e31e2e0 Mon Sep 17 00:00:00 2001 From: cage Date: Fri, 17 Feb 2023 18:31:49 +0100 Subject: [PATCH] - prevented connecting to a pleroma instance when running the TUI in gemini exclusive mode. --- src/main.lisp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main.lisp b/src/main.lisp index fc1f683..1263c0c 100644 --- a/src/main.lisp +++ b/src/main.lisp @@ -188,8 +188,9 @@ etc.) happened" (ui:focus-to-message-window)) (ui:focus-to-thread-window)) ;; now init the client - (client:init) - (client:authorize) + (when (not *gemini-full-screen-mode*) + (client:init) + (client:authorize)) (when command-line:*module-file* (handler-case (modules:load-module command-line:*module-file*)