From 14f64e3769365b991fc689b2ce5a219577ae1c2d Mon Sep 17 00:00:00 2001 From: Ryan Tharp Date: Mon, 10 Feb 2020 14:24:15 -0800 Subject: [PATCH] Remove unneeded branch --- js/modules/loki_app_dot_net_api.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/js/modules/loki_app_dot_net_api.js b/js/modules/loki_app_dot_net_api.js index 5fc778512..4e40b068a 100644 --- a/js/modules/loki_app_dot_net_api.js +++ b/js/modules/loki_app_dot_net_api.js @@ -109,13 +109,10 @@ class LokiAppDotNetServerAPI { JSON.stringify(objToSign) ); */ - let pName = profileName || ''; // You cannot use null to clear the profile name // the name key has to be set to know what value we want changed - if (pName === undefined || pName === null) { - pName = ''; - } + let pName = profileName || ''; const res = await this.serverRequest('users/me', { method: 'PATCH',