From 1edc591db368a16c5f5eecc3a2d8a0e8a5e8ba8d Mon Sep 17 00:00:00 2001 From: Jessy Catterwaul Date: Sun, 3 Apr 2022 23:59:06 -0400 Subject: [PATCH] Get code compiling when `!DEBUG` --- Emitron/Emitron/Guardpost/Guardpost.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Emitron/Emitron/Guardpost/Guardpost.swift b/Emitron/Emitron/Guardpost/Guardpost.swift index f9491caa..476457e0 100644 --- a/Emitron/Emitron/Guardpost/Guardpost.swift +++ b/Emitron/Emitron/Guardpost/Guardpost.swift @@ -113,7 +113,7 @@ public extension Guardpost { // This will prevent sharing cookies with Safari, which means no auto-login // However, it also means that you can actually log out, which is good, I guess. #if (!DEBUG) - authSession?.prefersEphemeralWebBrowserSession = true + authSession.prefersEphemeralWebBrowserSession = true #endif authSession.start()