From 143df268c0d89225733a30bb778a39cd37fe3bfa Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Adrien=20B=C3=A9raud?= <adrien.beraud@savoirfairelinux.com>
Date: Fri, 23 Feb 2024 10:21:06 -0500
Subject: [PATCH] JamiAccount: only save username if different

Change-Id: Idb5ddd8471e30fd31ebb48f495537d10b24ff250
---
 src/jamidht/jamiaccount.cpp | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/jamidht/jamiaccount.cpp b/src/jamidht/jamiaccount.cpp
index 39131965c9..a0fe25252e 100644
--- a/src/jamidht/jamiaccount.cpp
+++ b/src/jamidht/jamiaccount.cpp
@@ -1471,8 +1471,9 @@ JamiAccount::registerName(const std::string& name,
                 if (response == NameDirectory::RegistrationResponse::success) {
                     if (auto this_ = w.lock()) {
                         this_->registeredName_ = name;
-                        this_->editConfig(
-                            [&](JamiAccountConfig& config) { config.registeredName = name; });
+                        if (this_->config().registeredName != name)
+                            this_->editConfig(
+                                [&](JamiAccountConfig& config) { config.registeredName = name; });
                         emitSignal<libjami::ConfigurationSignal::VolatileDetailsChanged>(
                             this_->accountID_, this_->getVolatileAccountDetails());
                     }
-- 
GitLab