From f8477d47c86cc107cc1ebaecdc095478c78dcfe1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20Schw=C3=B6rer?= Date: Thu, 5 Jan 2023 00:41:42 +0100 Subject: [PATCH] StandardNotes: Send ephemeral=false (longer sessions) --- Source/Plugins/StandardNotePlugin/Sync/StandardNoteAPI.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Plugins/StandardNotePlugin/Sync/StandardNoteAPI.cs b/Source/Plugins/StandardNotePlugin/Sync/StandardNoteAPI.cs index efce057..e417c06 100644 --- a/Source/Plugins/StandardNotePlugin/Sync/StandardNoteAPI.cs +++ b/Source/Plugins/StandardNotePlugin/Sync/StandardNoteAPI.cs @@ -338,7 +338,7 @@ private static StandardNoteSessionData Authenticate004_v2(ISimpleJsonRest webSyn api = StandardNotePlugin.CURRENT_API_VERSION, password = reqpw, code_verifier = codeVerifier, - ephemeral = true, + ephemeral = false, }; var result = webAPI.PostTwoWay(request, "v2/login").data;