From 5e2586a27e734cfa2df3a9bc5b61ba6359683c70 Mon Sep 17 00:00:00 2001 From: Suguru Hirahara Date: Sun, 19 Jan 2025 14:45:52 +0900 Subject: [PATCH] Update docs/configuring-playbook-bot-draupnir.md: fix the condition for commenting out matrix_bot_draupnir_login_native Because enabling the native E2EE support requires the clean access token obtained with curl, which is supposed to be specified to "matrix_bot_draupnir_access_token", setting "matrix_bot_draupnir_enable_experimental_rust_crypto" to true means that "matrix_bot_draupnir_access_token" is also specified. Signed-off-by: Suguru Hirahara --- docs/configuring-playbook-bot-draupnir.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/configuring-playbook-bot-draupnir.md b/docs/configuring-playbook-bot-draupnir.md index 4eee4fb50..4971b0420 100644 --- a/docs/configuring-playbook-bot-draupnir.md +++ b/docs/configuring-playbook-bot-draupnir.md @@ -64,7 +64,7 @@ matrix_bot_draupnir_management_room: "MANAGEMENT_ROOM_ID_HERE" # Comment out this part if creating the user on your own and setting `matrix_bot_draupnir_access_token` for logging in. matrix_bot_draupnir_password: PASSWORD_FOR_THE_BOT -# Comment out this part if setting `matrix_bot_draupnir_enable_experimental_rust_crypto: true` or `matrix_bot_draupnir_access_token` for logging in. +# Comment out this part if setting `matrix_bot_draupnir_enable_experimental_rust_crypto: true` and `matrix_bot_draupnir_access_token` for logging in. matrix_bot_draupnir_login_native: true ```