From 58954f161e5557a8205ed2ffbd402b272804be09 Mon Sep 17 00:00:00 2001 From: Jens Spanier <42373861+Virinum@users.noreply.github.com> Date: Wed, 2 Jun 2021 18:12:17 +0200 Subject: [PATCH] Fix attachments typo (#1374) --- src/Core/Settings/GlobalSettings.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Core/Settings/GlobalSettings.cs b/src/Core/Settings/GlobalSettings.cs index 12b95e149d..ece38a05cc 100644 --- a/src/Core/Settings/GlobalSettings.cs +++ b/src/Core/Settings/GlobalSettings.cs @@ -10,8 +10,8 @@ namespace Bit.Core.Settings public GlobalSettings() { BaseServiceUri = new BaseServiceUriSettings(this); - Attachment = new FileStorageSettings(this, "attchments", "attchments"); - Send = new FileStorageSettings(this, "attchments/send", "attchments/send"); + Attachment = new FileStorageSettings(this, "attachments", "attachments"); + Send = new FileStorageSettings(this, "attachments/send", "attachments/send"); DataProtection = new DataProtectionSettings(this); }